-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (53 loc) · 1.32 KB
/
style.css
File metadata and controls
63 lines (53 loc) · 1.32 KB
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
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
#__next {
width: 100%;
height: 100%;
}
body {
position: relative;
background-color: var(--background-color, #ffffff);
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
radial-gradient(circle, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
background-size: 30px,30px 30px;
background-position: 0 0, 25px 25px, 45px 45px;
pointer-events: none;
}
.dark body::before {
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}
a {
text-decoration: none !important;
}
ul.nx-list-disc {
margin-top: 0 !important;
list-style-type: disc;
}
ul.nx-list-disc li li {
list-style-type: circle;
}
ul.nx-list-disc li li li {
list-style-type: square;
}
ol.nx-list-decimal {
margin-top: 0 !important;
}
.nextra-code-block pre {
@apply !bg-zinc-100;
@apply dark:!bg-zinc-800;
}