-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
196 lines (161 loc) · 3.14 KB
/
Copy pathtailwind.css
File metadata and controls
196 lines (161 loc) · 3.14 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto+Condensed:wght@300;400;600&display=swap');
@layer base {
/* Allow changing font family via CMS */
html {
font-family: var(--font-family);
}
mark {
@apply bg-accent text-accent-content;
}
/** Remove default styles from input[type=number] */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Disable scroll once drawer/modal is openned */
body:has(.drawer-toggle:checked),
body:has(.modal-toggle:checked) {
overflow: hidden;
height: 100vh;
}
.container {
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 100%;
@screen lg {
padding: 0 30px;
max-width: 1270px;
}
}
}
.group:disabled .group-disabled\:animate-progress {
animation: progress-frame ease normal
}
@keyframes progress-frame {
0% {
--dot-progress: 0%
}
to {
--dot-progress: 100%
}
}
.markdown-body {
color: #000;
word-wrap: break-word;
font-size: 14px;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
.markdown-body a {
color: #000;
text-decoration: underline;
}
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre {
margin: 15px 0;
}
.markdown-body ul {
list-style-type: inherit;
}
.markdown-body ol {
list-style-type: inherit;
}
.markdown-body ul,
.markdown-body ol {
padding-left: 30px;
}
.markdown-body h1 {
color: #000;
font-size: 16px;
}
.markdown-body h2 {
color: #000;
font-size: 15px;
}
.markdown-body h3 {
font-size: 14px;
}
.markdown-body h4 {
font-size: 14px;
}
.markdown-body h5 {
font-size: 14px;
}
.markdown-body h6 {
color: #777;
font-size: 14px;
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
font-weight: bold;
line-height: 1.7;
margin: 1em 0 15px 0;
}
.markdown-body h1+p,
.markdown-body h2+p,
.markdown-body h3+p {
margin-top: 10px;
}
.markdown-body img {
max-width: 100%;
}
.markdown-body code,
.markdown-body pre {
background-color: #F8F8F8;
border-radius: 3px;
border: 1px solid #DDD;
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-size: 12px;
margin: 0 2px;
padding: 0 5px;
white-space: pre;
}
.markdown-body pre code {
border: none;
margin: 0;
padding: 0;
white-space: pre;
}
.Nunito {
font-family: 'Nunito';
}
.seo-text h1 {
font-family: "Commissioner", sans-serif;
font-weight: 300;
font-size: 18px;
line-height: 21px;
color: #353535 !important;
margin-bottom: 16px;
}
.seo-text h2 {
font-family: "Commissioner", sans-serif;
font-weight: 300;
font-size: 18px;
line-height: 21px;
color: #353535 !important;
}
.seo-text p {
font-family: "Commissioner", sans-serif;
font-weight: 300;
font-size: 16px;
line-height: 24px;
color: #353535 !important;
}
.seo-text strong {
font-weight: 700;
}