-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (83 loc) · 1.73 KB
/
style.css
File metadata and controls
106 lines (83 loc) · 1.73 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
a {
text-decoration: none !important;
}
main a:not(.no-underline):not(.\!no-underline):hover {
text-decoration: underline !important;
}
ul, ol {
margin-top: 0 !important;
}
li ol,
li ul {
margin-top: 0 !important;
}
p + p {
margin-top: 0.8em !important;
}
blockquote {
margin-top: 0.8em !important;
}
table {
width: 100%;
display: table !important;
}
table tr:nth-child(even) {
background-color: transparent !important;
}
table th:empty {
display: none;
}
}
@font-face {
font-weight: 300;
font-family: 'Poppins';
font-style: normal;
font-display: swap;
src: url('/fonts/poppins/poppins-light.woff2') format('woff2'),
url('/fonts/poppins/poppins-light.woff') format('woff');
}
body {
font-family: 'Poppins';
}
@media (max-width: 568px) {
.nextra-nav-container nav a:first-child {
margin-right: auto !important;
}
}
@media (min-width: 569px) {
.nextra-nav-container nav {
justify-content: flex-start;
}
.nextra-nav-container nav > a:first-child {
margin-right: 5.25rem !important;
}
.nextra-nav-container nav > div:first-of-type {
margin-right: auto !important;
}
}
.nextra-nav-container nav a {
margin-right: 0.5rem !important;
font-size: 1rem !important;
}
.nextra-sidebar-container > div[data-toggle-animation] {
display: none !important;
}
.nextra-menu-desktop > li > button {
font-weight: 600;
}
.nextra-menu-desktop button svg {
opacity: 0.5;
}
.nextra-nav-container nav a:last-child {
margin-right: 0 !important;
}
.nextra-search {
margin-left: auto !important;
}
.nextra-code-block._mt-6 {
margin-top: 0.8rem !important;
}