imdhemy-jekyll-theme 0.1.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +97 -1
- data/_includes/content.html +1 -1
- data/_includes/contributions.html +2 -0
- data/_includes/header.html +2 -2
- data/_includes/post-header.html +11 -5
- data/_includes/post-item.html +2 -0
- data/_includes/social-media-meta.html +16 -0
- data/_includes/social.html +1 -1
- data/_includes/testimonials.html +5 -2
- data/_layouts/default.html +17 -5
- data/_sass/base/_reset.scss +227 -0
- data/_sass/base/_typography.scss +24 -0
- data/_sass/components/_core.scss +304 -0
- data/_sass/style.scss +9 -273
- data/_sass/utilities/_interactive.scss +100 -0
- data/_sass/utilities/_layout.scss +370 -0
- data/_sass/utilities/_responsive.scss +99 -0
- data/_sass/utilities/_typography.scss +72 -0
- data/_sass/utilities/_visual.scss +119 -0
- data/assets/css/main.scss +1 -2
- data/assets/images/social.png +0 -0
- data/assets/js/dist/main.js +1 -1
- data/assets/js/src/burger-menu.js +16 -0
- data/assets/js/src/index.js +25 -1
- metadata +61 -11
- data/_sass/.gitinclude +0 -0
- data/_sass/tailwind.src.scss +0 -4
- data/assets/css/tailwind.css +0 -1
- /data/_sass/{_highlight.scss → components/_highlight.scss} +0 -0
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
width: 100%;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.absolute {
|
|
6
|
+
position: absolute;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.relative {
|
|
10
|
+
position: relative;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.sticky {
|
|
14
|
+
position: sticky;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.inset-0 {
|
|
18
|
+
inset: 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.left-0 {
|
|
22
|
+
left: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.right-6 {
|
|
26
|
+
right: 1.5rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.top-0 {
|
|
30
|
+
top: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.top-32 {
|
|
34
|
+
top: 8rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.top-\[100vh\] {
|
|
38
|
+
top: 100vh;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.-z-10 {
|
|
42
|
+
z-index: -10;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.-z-20 {
|
|
46
|
+
z-index: -20;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.m-0 {
|
|
50
|
+
margin: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.m-auto {
|
|
54
|
+
margin: auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.mx-auto {
|
|
58
|
+
margin-right: auto;
|
|
59
|
+
margin-left: auto;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.my-2 {
|
|
63
|
+
margin-top: 0.5rem;
|
|
64
|
+
margin-bottom: 0.5rem;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.mb-0 {
|
|
68
|
+
margin-bottom: 0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.mb-1 {
|
|
72
|
+
margin-bottom: 0.25rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.mb-5 {
|
|
76
|
+
margin-bottom: 1.25rem;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.mb-8 {
|
|
80
|
+
margin-bottom: 2rem;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.mb-16 {
|
|
84
|
+
margin-bottom: 4rem;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.ml-10 {
|
|
88
|
+
margin-left: 2.5rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.ml-auto {
|
|
92
|
+
margin-left: auto;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.mr-3 {
|
|
96
|
+
margin-right: 0.75rem;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.mr-5 {
|
|
100
|
+
margin-right: 1.25rem;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.mr-8 {
|
|
104
|
+
margin-right: 2rem;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.mt-16 {
|
|
108
|
+
margin-top: 4rem;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.mt-24 {
|
|
112
|
+
margin-top: 6rem;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.block {
|
|
116
|
+
display: block;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.inline {
|
|
120
|
+
display: inline;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.inline-block {
|
|
124
|
+
display: inline-block;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.flex {
|
|
128
|
+
display: flex;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.grid {
|
|
132
|
+
display: grid;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.table {
|
|
136
|
+
display: table;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.contents {
|
|
140
|
+
display: contents;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.hidden {
|
|
144
|
+
display: none;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.aspect-auto {
|
|
148
|
+
aspect-ratio: auto;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.aspect-square {
|
|
152
|
+
aspect-ratio: 1 / 1;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.aspect-video {
|
|
156
|
+
aspect-ratio: 16 / 9;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.h-8 {
|
|
160
|
+
height: 2rem;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.h-10 {
|
|
164
|
+
height: 2.5rem;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.h-\[48px\] {
|
|
168
|
+
height: 48px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.h-auto {
|
|
172
|
+
height: auto;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.h-full {
|
|
176
|
+
height: 100%;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.min-h-\[68px\] {
|
|
180
|
+
min-height: 68px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.min-h-screen {
|
|
184
|
+
min-height: 100vh;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.w-10 {
|
|
188
|
+
width: 2.5rem;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.w-40 {
|
|
192
|
+
width: 10rem;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.w-\[48px\] {
|
|
196
|
+
width: 48px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.w-full {
|
|
200
|
+
width: 100%;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.min-w-\[68px\] {
|
|
204
|
+
min-width: 68px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.min-w-fit {
|
|
208
|
+
min-width: fit-content;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.max-w-2xl {
|
|
212
|
+
max-width: 42rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.max-w-screen-sm {
|
|
216
|
+
max-width: 640px;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.max-w-screen-md {
|
|
220
|
+
max-width: 768px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.max-w-screen-lg {
|
|
224
|
+
max-width: 1024px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.max-w-screen-xl {
|
|
228
|
+
max-width: 1280px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.flex-1 {
|
|
232
|
+
flex: 1 1 0%;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.flex-auto {
|
|
236
|
+
flex: 1 1 auto;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.grid-cols-1 {
|
|
240
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.flex-col {
|
|
244
|
+
flex-direction: column;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.flex-column {
|
|
248
|
+
display: flex;
|
|
249
|
+
flex-direction: column;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.flex-wrap {
|
|
253
|
+
flex-wrap: wrap;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.items-center {
|
|
257
|
+
align-items: center;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.justify-end {
|
|
261
|
+
justify-content: flex-end;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.justify-center {
|
|
265
|
+
justify-content: center;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.justify-between {
|
|
269
|
+
justify-content: space-between;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.gap-4 {
|
|
273
|
+
gap: 1rem;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.gap-5 {
|
|
277
|
+
gap: 1.25rem;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.overflow-hidden,
|
|
281
|
+
.truncate {
|
|
282
|
+
overflow: hidden;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.truncate {
|
|
286
|
+
text-overflow: ellipsis;
|
|
287
|
+
white-space: nowrap;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.object-cover {
|
|
291
|
+
object-fit: cover;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.p-0 {
|
|
295
|
+
padding: 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.p-2 {
|
|
299
|
+
padding: 0.5rem;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.p-5 {
|
|
303
|
+
padding: 1.25rem;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.p-8 {
|
|
307
|
+
padding: 2rem;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.p-10 {
|
|
311
|
+
padding: 2.5rem;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.p-\[2px\] {
|
|
315
|
+
padding: 2px;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.px-2 {
|
|
319
|
+
padding-right: 0.5rem;
|
|
320
|
+
padding-left: 0.5rem;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.px-5 {
|
|
324
|
+
padding-right: 1.25rem;
|
|
325
|
+
padding-left: 1.25rem;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.px-6 {
|
|
329
|
+
padding-right: 1.5rem;
|
|
330
|
+
padding-left: 1.5rem;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.px-8 {
|
|
334
|
+
padding-right: 2rem;
|
|
335
|
+
padding-left: 2rem;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.py-1 {
|
|
339
|
+
padding-top: 0.25rem;
|
|
340
|
+
padding-bottom: 0.25rem;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.py-4 {
|
|
344
|
+
padding-top: 1rem;
|
|
345
|
+
padding-bottom: 1rem;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.py-5 {
|
|
349
|
+
padding-top: 1.25rem;
|
|
350
|
+
padding-bottom: 1.25rem;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.py-6 {
|
|
354
|
+
padding-top: 1.5rem;
|
|
355
|
+
padding-bottom: 1.5rem;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.py-10 {
|
|
359
|
+
padding-top: 2.5rem;
|
|
360
|
+
padding-bottom: 2.5rem;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.py-16 {
|
|
364
|
+
padding-top: 4rem;
|
|
365
|
+
padding-bottom: 4rem;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.pb-8 {
|
|
369
|
+
padding-bottom: 2rem;
|
|
370
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
@media (min-width: 640px) {
|
|
2
|
+
.container {
|
|
3
|
+
max-width: 640px;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@media (min-width: 768px) {
|
|
8
|
+
.container {
|
|
9
|
+
max-width: 768px;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@media (min-width: 1024px) {
|
|
14
|
+
.container {
|
|
15
|
+
max-width: 1024px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.lg\:mb-0 {
|
|
19
|
+
margin-bottom: 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.lg\:mr-5 {
|
|
23
|
+
margin-right: 1.25rem;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.lg\:flex {
|
|
27
|
+
display: flex;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.lg\:hidden {
|
|
31
|
+
display: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.lg\:max-h-\[250px\] {
|
|
35
|
+
max-height: 250px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.lg\:min-w-\[250px\] {
|
|
39
|
+
min-width: 250px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.lg\:max-w-\[250px\] {
|
|
43
|
+
max-width: 250px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.lg\:grid-cols-3 {
|
|
47
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.lg\:flex-row {
|
|
51
|
+
flex-direction: row;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.lg\:px-0 {
|
|
55
|
+
padding-right: 0;
|
|
56
|
+
padding-left: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.lg\:py-14 {
|
|
60
|
+
padding-top: 3.5rem;
|
|
61
|
+
padding-bottom: 3.5rem;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.lg\:text-2xl {
|
|
65
|
+
font-size: 1.5rem;
|
|
66
|
+
line-height: 2rem;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.lg\:text-4xl {
|
|
70
|
+
font-size: 2.25rem;
|
|
71
|
+
line-height: 2.5rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.lg\:text-5xl {
|
|
75
|
+
font-size: 3rem;
|
|
76
|
+
line-height: 1;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.lg\:text-6xl {
|
|
80
|
+
font-size: 3.75rem;
|
|
81
|
+
line-height: 1;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.lg\:leading-10 {
|
|
85
|
+
line-height: 2.5rem;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@media (min-width: 1280px) {
|
|
90
|
+
.container {
|
|
91
|
+
max-width: 1280px;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@media (min-width: 1536px) {
|
|
96
|
+
.container {
|
|
97
|
+
max-width: 1536px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.font-sans {
|
|
2
|
+
font-family: "Noto Sans Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.font-semibold {
|
|
6
|
+
font-weight: 600;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.font-bold {
|
|
10
|
+
font-weight: 700;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.font-black {
|
|
14
|
+
font-weight: 900;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.text-xs {
|
|
18
|
+
font-size: 0.75rem;
|
|
19
|
+
line-height: 1rem;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.text-sm {
|
|
23
|
+
font-size: 0.875rem;
|
|
24
|
+
line-height: 1.25rem;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.text-base {
|
|
28
|
+
font-size: 1rem;
|
|
29
|
+
line-height: 1.5rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.text-lg {
|
|
33
|
+
font-size: 1.125rem;
|
|
34
|
+
line-height: 1.75rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.text-xl {
|
|
38
|
+
font-size: 1.25rem;
|
|
39
|
+
line-height: 1.75rem;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.text-2xl {
|
|
43
|
+
font-size: 1.5rem;
|
|
44
|
+
line-height: 2rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.text-3xl {
|
|
48
|
+
font-size: 1.875rem;
|
|
49
|
+
line-height: 2.25rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.text-5xl {
|
|
53
|
+
font-size: 3rem;
|
|
54
|
+
line-height: 1;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.text-8xl {
|
|
58
|
+
font-size: 6rem;
|
|
59
|
+
line-height: 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.leading-8 {
|
|
63
|
+
line-height: 2rem;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.text-center {
|
|
67
|
+
text-align: center;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.text-right {
|
|
71
|
+
text-align: right;
|
|
72
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
.rounded {
|
|
2
|
+
border-radius: 0.25rem;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.rounded-md {
|
|
6
|
+
border-radius: 0.375rem;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.rounded-lg {
|
|
10
|
+
border-radius: 0.5rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rounded-3xl {
|
|
14
|
+
border-radius: 1.5rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.rounded-full {
|
|
18
|
+
border-radius: 9999px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.border-2 {
|
|
22
|
+
border-width: 2px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.border-b {
|
|
26
|
+
border-bottom-width: 1px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.border-b-2 {
|
|
30
|
+
border-bottom-width: 2px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.border-transparent {
|
|
34
|
+
border-color: transparent;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.border-gray-200 {
|
|
38
|
+
border-color: rgb(229 231 235);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.border-b-gray-200 {
|
|
42
|
+
border-bottom-color: rgb(229 231 235);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.border-indigo-600 {
|
|
46
|
+
border-color: rgb(79 70 229);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.bg-black {
|
|
50
|
+
background-color: rgb(0 0 0);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.bg-violet-100 {
|
|
54
|
+
background-color: rgb(237 233 254);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.bg-violet-700 {
|
|
58
|
+
background-color: rgb(109 40 217);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.bg-white {
|
|
62
|
+
background-color: rgb(255 255 255);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.bg-cover {
|
|
66
|
+
background-size: cover;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.bg-bottom {
|
|
70
|
+
background-position: bottom;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.text-black {
|
|
74
|
+
color: rgb(0 0 0);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.text-blue-500 {
|
|
78
|
+
color: rgb(59 130 246);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.text-gray-300 {
|
|
82
|
+
color: rgb(209 213 219);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.text-gray-500 {
|
|
86
|
+
color: rgb(107 114 128);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.text-gray-600 {
|
|
90
|
+
color: rgb(75 85 99);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.text-gray-700 {
|
|
94
|
+
color: rgb(55 65 81);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.text-gray-900 {
|
|
98
|
+
color: rgb(17 24 39);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.text-white {
|
|
102
|
+
color: rgb(255 255 255);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.opacity-0 {
|
|
106
|
+
opacity: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.opacity-75 {
|
|
110
|
+
opacity: 0.75;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.shadow-md {
|
|
114
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.drop-shadow-md {
|
|
118
|
+
filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
|
|
119
|
+
}
|
data/assets/css/main.scss
CHANGED
|
Binary file
|