-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
67 lines (53 loc) · 1.29 KB
/
custom.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.nextra-body.full {
margin: 0 auto;
}
code {
@apply text-sm;
}
.dark .invert-on-dark {
filter: invert(1) brightness(1.8);
}
.nextra-toc-meta {
display: none;
}
code {
font-family: 'Menlo', PT Mono, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono',
monospace !important;
}
video {
/* border: 2px solid #262626;
border-radius: 10px; */
width: 100%;
margin: 2em 0;
/* padding: 0 2em;
background: black; */
}
.dark p,
.dark ol,
.dark li {
color: #e3e3e3;
}
p > strong {
color: #fb923c;
}
.nextra-sidebar-menu {
box-shadow: none !important;
}
.dark .nextra-sidebar-menu > div {
background: #111111 !important;
}
.light .nextra-sidebar-menu > div {
background: white !important;
}
a > h1 {
font-weight: 500;
}
.default-answer-button {
@apply w-full h-12 bg-[#F4F7FC] dark:bg-[#1F2930] rounded-md mt-2 px-3 hover:shadow-sm transition-all duration-75 ease-linear font-sans;
}
.wrong-answer-button {
@apply h-12 bg-[#F4F7FC] dark:bg-[#1F2930] rounded-md mt-2 px-3 hover:shadow-sm transition-all duration-75 ease-linear font-sans border-solid border-2 border-red-500;
}
.correct-answer-button {
@apply h-12 bg-[#F4F7FC] dark:bg-[#1F2930] rounded-md mt-2 px-3 hover:shadow-sm transition-all duration-75 ease-linear font-sans border-solid border-2 border-green-400;
}