beercss 2.2.11 → 3.0.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.
- package/README.md +45 -35
- package/dist/cdn/beer.min.css +1 -1
- package/dist/cdn/beer.min.js +1 -1
- package/dist/cdn/material-symbols-outlined.woff2 +0 -0
- package/dist/cdn/roboto-flex-cyrillic-ext.woff2 +0 -0
- package/dist/cdn/roboto-flex-cyrillic.woff2 +0 -0
- package/dist/cdn/roboto-flex-greek.woff2 +0 -0
- package/dist/cdn/roboto-flex-latin-ext.woff2 +0 -0
- package/dist/cdn/roboto-flex-latin.woff2 +0 -0
- package/dist/cdn/roboto-flex-vietnamese.woff2 +0 -0
- package/index.js +10 -2
- package/package.json +17 -2
- package/src/cdn/beer.css +3 -2
- package/src/cdn/beer.ts +164 -166
- package/src/cdn/elements/badges.css +7 -7
- package/src/cdn/elements/buttons.css +24 -24
- package/src/cdn/elements/cards.css +7 -7
- package/src/cdn/elements/chips.css +14 -14
- package/src/cdn/elements/containers.css +30 -21
- package/src/cdn/elements/dropdowns.css +5 -5
- package/src/cdn/elements/expansions.css +9 -5
- package/src/cdn/elements/fields.css +70 -70
- package/src/cdn/elements/grids.css +31 -30
- package/src/cdn/elements/icons.css +18 -18
- package/src/cdn/elements/layouts.css +17 -17
- package/src/cdn/elements/loaders.css +45 -35
- package/src/cdn/elements/media.css +37 -37
- package/src/cdn/elements/modals.css +17 -17
- package/src/cdn/elements/navigations.css +33 -32
- package/src/cdn/elements/overlays.css +1 -1
- package/src/cdn/elements/pages.css +12 -9
- package/src/cdn/elements/progress.css +2 -2
- package/src/cdn/elements/selections.css +31 -30
- package/src/cdn/elements/tables.css +14 -14
- package/src/cdn/elements/tabs.css +21 -16
- package/src/cdn/elements/toasts.css +12 -12
- package/src/cdn/elements/tooltips.css +10 -10
- package/src/cdn/helpers/alignments.css +1 -1
- package/src/cdn/helpers/colors.css +215 -215
- package/src/cdn/helpers/directions.css +30 -0
- package/src/cdn/helpers/dividers.css +5 -5
- package/src/cdn/helpers/elevates.css +1 -1
- package/src/cdn/helpers/forms.css +21 -21
- package/src/cdn/helpers/margins.css +5 -5
- package/src/cdn/helpers/opacities.css +1 -1
- package/src/cdn/helpers/paddings.css +5 -5
- package/src/cdn/helpers/positions.css +1 -1
- package/src/cdn/helpers/reset.css +2 -2
- package/src/cdn/helpers/responsive.css +2 -1
- package/src/cdn/helpers/scrolls.css +1 -2
- package/src/cdn/helpers/shadows.css +1 -1
- package/src/cdn/helpers/sizes.css +7 -7
- package/src/cdn/helpers/spaces.css +5 -5
- package/src/cdn/helpers/theme.css +38 -38
- package/src/cdn/helpers/typography.css +63 -14
- package/src/cdn/helpers/waves.css +10 -10
- package/src/cdn/material-symbols-outlined.woff2 +0 -0
- package/src/cdn/roboto-flex-cyrillic-ext.woff2 +0 -0
- package/src/cdn/roboto-flex-cyrillic.woff2 +0 -0
- package/src/cdn/roboto-flex-greek.woff2 +0 -0
- package/src/cdn/roboto-flex-latin-ext.woff2 +0 -0
- package/src/cdn/roboto-flex-latin.woff2 +0 -0
- package/src/cdn/roboto-flex-vietnamese.woff2 +0 -0
- package/src/cdn/settings/dark.css +13 -14
- package/src/cdn/settings/fonts.css +206 -0
- package/src/cdn/settings/light.css +17 -18
- package/src/cdn/settings/urls.css +0 -1
|
@@ -1,50 +1,50 @@
|
|
|
1
1
|
.field {
|
|
2
|
-
height:
|
|
3
|
-
margin-bottom:
|
|
2
|
+
height: 3rem;
|
|
3
|
+
margin-bottom: 2rem;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
* + .field {
|
|
7
|
-
margin-top:
|
|
7
|
+
margin-top: 1rem;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.grid > * > .field {
|
|
11
|
-
margin-bottom:
|
|
11
|
+
margin-bottom: 1rem;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.grid > * > .field + .field {
|
|
15
|
-
margin-top:
|
|
15
|
+
margin-top: 2rem;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.grid.no-space > * > .field + .field {
|
|
19
|
-
margin-top:
|
|
19
|
+
margin-top: 1rem;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.grid.medium-space > * > .field + .field {
|
|
23
|
-
margin-top:
|
|
23
|
+
margin-top: 2.5rem;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.grid.large-space > * > .field + .field {
|
|
27
|
-
margin-top:
|
|
27
|
+
margin-top: 3rem;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.field.small {
|
|
31
|
-
height:
|
|
31
|
+
height: 2.5rem;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.field.medium {
|
|
35
|
-
height:
|
|
35
|
+
height: 3rem;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.field.large {
|
|
39
|
-
height:
|
|
39
|
+
height: 3.5rem;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.field.extra {
|
|
43
|
-
height:
|
|
43
|
+
height: 4rem;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.field::before {
|
|
47
|
-
content:
|
|
47
|
+
content: "";
|
|
48
48
|
position: absolute;
|
|
49
49
|
top: 0;
|
|
50
50
|
left: 0;
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
top: 50%;
|
|
68
68
|
left: auto;
|
|
69
|
-
right:
|
|
69
|
+
right: 1rem;
|
|
70
70
|
transform: translateY(-50%);
|
|
71
71
|
cursor: pointer;
|
|
72
72
|
z-index: 0;
|
|
@@ -82,13 +82,13 @@
|
|
|
82
82
|
.field.fill > .loader,
|
|
83
83
|
.field.round > .loader {
|
|
84
84
|
left: auto;
|
|
85
|
-
right:
|
|
85
|
+
right: 1rem;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.field > i:first-child,
|
|
89
89
|
.field > img:first-child,
|
|
90
90
|
.field > .loader:first-child {
|
|
91
|
-
left:
|
|
91
|
+
left: 1rem;
|
|
92
92
|
right: auto;
|
|
93
93
|
}
|
|
94
94
|
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
.field.border > .loader:first-child,
|
|
102
102
|
.field.fill > .loader:first-child,
|
|
103
103
|
.field.round > .loader:first-child {
|
|
104
|
-
left:
|
|
104
|
+
left: 1rem;
|
|
105
105
|
right: auto;
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -110,9 +110,9 @@
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.field > .loader {
|
|
113
|
-
border-width:
|
|
114
|
-
width:
|
|
115
|
-
height:
|
|
113
|
+
border-width: 0.1875rem;
|
|
114
|
+
width: 1.5rem;
|
|
115
|
+
height: 1.5rem;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
/* input, textarea and select */
|
|
@@ -129,7 +129,7 @@ input[type^=date]::-webkit-inner-spin-button,
|
|
|
129
129
|
input[type^=date]::-webkit-calendar-picker-indicator,
|
|
130
130
|
input[type^=time]::-webkit-inner-spin-button,
|
|
131
131
|
input[type^=time]::-webkit-calendar-picker-indicator {
|
|
132
|
-
opacity: 0;
|
|
132
|
+
opacity: 0;
|
|
133
133
|
position: absolute;
|
|
134
134
|
top: 0;
|
|
135
135
|
bottom: 0;
|
|
@@ -155,10 +155,10 @@ input[type=file] {
|
|
|
155
155
|
.field > input,
|
|
156
156
|
.field > textarea,
|
|
157
157
|
.field > select {
|
|
158
|
-
border:
|
|
159
|
-
padding: 0
|
|
158
|
+
border: 0.0625rem solid transparent;
|
|
159
|
+
padding: 0 0.9375rem;
|
|
160
160
|
font-family: inherit;
|
|
161
|
-
font-size:
|
|
161
|
+
font-size: 1rem;
|
|
162
162
|
width: 100%;
|
|
163
163
|
height: 100%;
|
|
164
164
|
outline: none;
|
|
@@ -170,8 +170,8 @@ input[type=file] {
|
|
|
170
170
|
.field > input:focus,
|
|
171
171
|
.field > textarea:focus,
|
|
172
172
|
.field > select:focus {
|
|
173
|
-
border:
|
|
174
|
-
padding: 0
|
|
173
|
+
border: 0.125rem solid transparent;
|
|
174
|
+
padding: 0 0.875rem;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
177
|
.field.border > input,
|
|
@@ -189,39 +189,39 @@ input[type=file] {
|
|
|
189
189
|
.field.round > input,
|
|
190
190
|
.field.round > textarea,
|
|
191
191
|
.field.round > select {
|
|
192
|
-
padding-left:
|
|
193
|
-
padding-right:
|
|
192
|
+
padding-left: 1.4376rem;
|
|
193
|
+
padding-right: 1.4376rem;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.field.round > input:focus,
|
|
197
197
|
.field.round > textarea:focus,
|
|
198
198
|
.field.round > select:focus {
|
|
199
|
-
padding-left:
|
|
200
|
-
padding-right:
|
|
199
|
+
padding-left: 1.375rem;
|
|
200
|
+
padding-right: 1.375rem;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
.field.prefix > input,
|
|
204
204
|
.field.prefix > textarea,
|
|
205
205
|
.field.prefix > select {
|
|
206
|
-
padding-left:
|
|
206
|
+
padding-left: 2.9375rem;
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
.field.prefix > input:focus,
|
|
210
210
|
.field.prefix > textarea:focus,
|
|
211
211
|
.field.prefix > select:focus {
|
|
212
|
-
padding-left:
|
|
212
|
+
padding-left: 2.875rem;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
.field.suffix > input,
|
|
216
216
|
.field.suffix > textarea,
|
|
217
217
|
.field.suffix > select {
|
|
218
|
-
padding-right:
|
|
218
|
+
padding-right: 2.9375rem;
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
.field.suffix > input:focus,
|
|
222
222
|
.field.suffix > textarea:focus,
|
|
223
223
|
.field.suffix > select:focus {
|
|
224
|
-
padding-right:
|
|
224
|
+
padding-right: 2.875rem;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
.field:not(.border, .round) > input,
|
|
@@ -237,15 +237,15 @@ input[type=file] {
|
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
.field {
|
|
240
|
-
border-radius:
|
|
240
|
+
border-radius: 0.25rem 0.25rem 0 0;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.field.border {
|
|
244
|
-
border-radius:
|
|
244
|
+
border-radius: 0.25rem;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
247
|
.field.round {
|
|
248
|
-
border-radius:
|
|
248
|
+
border-radius: 2rem;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
.field.round:not(.border, .fill) > input,
|
|
@@ -282,25 +282,25 @@ input[type=file] {
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
.field > :disabled {
|
|
285
|
-
opacity: .5;
|
|
285
|
+
opacity: 0.5;
|
|
286
286
|
cursor: not-allowed;
|
|
287
287
|
}
|
|
288
288
|
|
|
289
289
|
.field.small.textarea {
|
|
290
|
-
height:
|
|
290
|
+
height: 4.5rem;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
.field.textarea,
|
|
294
294
|
.field.medium.textarea {
|
|
295
|
-
height:
|
|
295
|
+
height: 5.5rem;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
.field.large.textarea {
|
|
299
|
-
height:
|
|
299
|
+
height: 6.5rem;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
.field.extra.textarea {
|
|
303
|
-
height:
|
|
303
|
+
height: 7.5rem;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
.field > select > option {
|
|
@@ -310,7 +310,7 @@ input[type=file] {
|
|
|
310
310
|
|
|
311
311
|
.field.label > input,
|
|
312
312
|
.field.label > select {
|
|
313
|
-
padding-top:
|
|
313
|
+
padding-top: 1rem;
|
|
314
314
|
}
|
|
315
315
|
|
|
316
316
|
.field.label.border:not(.fill) > input,
|
|
@@ -319,84 +319,84 @@ input[type=file] {
|
|
|
319
319
|
}
|
|
320
320
|
|
|
321
321
|
.field.label.small > textarea {
|
|
322
|
-
padding-top:
|
|
322
|
+
padding-top: 1.125rem;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
325
|
.field.label > textarea,
|
|
326
326
|
.field.label.medium > textarea {
|
|
327
|
-
padding-top:
|
|
327
|
+
padding-top: 1.375rem;
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
.field.label.large > textarea {
|
|
331
|
-
padding-top:
|
|
331
|
+
padding-top: 1.625rem;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
.field.label.extra > textarea {
|
|
335
|
-
padding-top:
|
|
335
|
+
padding-top: 1.875rem;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
338
|
.field.small:not(.label) > textarea,
|
|
339
339
|
.field.small.border:not(.fill) > textarea {
|
|
340
|
-
padding-top:
|
|
340
|
+
padding-top: 0.625rem;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
.field:not(.label) > textarea,
|
|
344
344
|
.field.border:not(.fill) > textarea,
|
|
345
345
|
.field.medium:not(.label) > textarea,
|
|
346
346
|
.field.medium.border:not(.fill) > textarea {
|
|
347
|
-
padding-top:
|
|
347
|
+
padding-top: 0.875rem;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
.field.large:not(.label) > textarea,
|
|
351
351
|
.field.large.border:not(.fill) > textarea {
|
|
352
|
-
padding-top:
|
|
352
|
+
padding-top: 1.125rem;
|
|
353
353
|
}
|
|
354
354
|
|
|
355
355
|
.field.extra:not(.label) > textarea,
|
|
356
356
|
.field.extra.border:not(.fill) > textarea {
|
|
357
|
-
padding-top:
|
|
357
|
+
padding-top: 1.375rem;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
/* label */
|
|
361
361
|
.field.label > label {
|
|
362
362
|
position: absolute;
|
|
363
363
|
top: 50%;
|
|
364
|
-
left:
|
|
365
|
-
font-size:
|
|
364
|
+
left: 1rem;
|
|
365
|
+
font-size: 1rem;
|
|
366
366
|
transform: translateY(-50%);
|
|
367
367
|
transition: var(--speed2) all, 0s background-color;
|
|
368
368
|
z-index: 0;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
.field.label.textarea.small > label {
|
|
372
|
-
top:
|
|
372
|
+
top: 1.25rem;
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
.field.label.textarea > label,
|
|
376
376
|
.field.label.textarea.medium > label {
|
|
377
|
-
top:
|
|
377
|
+
top: 1.5rem;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
.field.label.textarea.large > label {
|
|
381
|
-
top:
|
|
381
|
+
top: 1.75rem;
|
|
382
382
|
}
|
|
383
383
|
|
|
384
384
|
.field.label.textarea.extra > label {
|
|
385
|
-
top:
|
|
385
|
+
top: 2rem;
|
|
386
386
|
}
|
|
387
387
|
|
|
388
388
|
.field.label.round > label {
|
|
389
|
-
left:
|
|
389
|
+
left: 1.5rem;
|
|
390
390
|
}
|
|
391
391
|
|
|
392
392
|
.field.label.prefix > label {
|
|
393
|
-
left:
|
|
393
|
+
left: 3rem;
|
|
394
394
|
}
|
|
395
395
|
|
|
396
396
|
.field.label > label.active,
|
|
397
397
|
.field.label > [placeholder]:focus ~ label,
|
|
398
398
|
.field.label > [placeholder]:not(:placeholder-shown) ~ label {
|
|
399
|
-
font-size:
|
|
399
|
+
font-size: 0.75rem;
|
|
400
400
|
transform: translateY(-120%);
|
|
401
401
|
z-index: 1;
|
|
402
402
|
}
|
|
@@ -404,9 +404,9 @@ input[type=file] {
|
|
|
404
404
|
.field.label.border:not(.fill) > label.active,
|
|
405
405
|
.field.label.border:not(.fill) > [placeholder]:focus ~ label,
|
|
406
406
|
.field.label.border:not(.fill) > [placeholder]:not(:placeholder-shown) ~ label {
|
|
407
|
-
font-size:
|
|
407
|
+
font-size: 0.75rem;
|
|
408
408
|
top: 0%;
|
|
409
|
-
left:
|
|
409
|
+
left: 1rem;
|
|
410
410
|
transform: translateY(-50%);
|
|
411
411
|
z-index: 1;
|
|
412
412
|
}
|
|
@@ -414,7 +414,7 @@ input[type=file] {
|
|
|
414
414
|
.field.label.border.round:not(.fill) > label.active,
|
|
415
415
|
.field.label.border.round:not(.fill) > [placeholder]:focus ~ label,
|
|
416
416
|
.field.label.border.round:not(.fill) > [placeholder]:not(:placeholder-shown) ~ label {
|
|
417
|
-
left:
|
|
417
|
+
left: 1.5rem;
|
|
418
418
|
z-index: 1;
|
|
419
419
|
}
|
|
420
420
|
|
|
@@ -426,8 +426,8 @@ input[type=file] {
|
|
|
426
426
|
color: var(--error) !important;
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
-
.field > label.required
|
|
430
|
-
.field.required > label
|
|
429
|
+
.field > label.required::after,
|
|
430
|
+
.field.required > label::after {
|
|
431
431
|
content: " * ";
|
|
432
432
|
}
|
|
433
433
|
|
|
@@ -435,12 +435,12 @@ input[type=file] {
|
|
|
435
435
|
.field > .helper,
|
|
436
436
|
.field > .error {
|
|
437
437
|
position: absolute;
|
|
438
|
-
left:
|
|
438
|
+
left: 1rem;
|
|
439
439
|
bottom: 0;
|
|
440
440
|
transform: translateY(100%);
|
|
441
|
-
font-size:
|
|
441
|
+
font-size: 0.75rem;
|
|
442
442
|
background: none !important;
|
|
443
|
-
padding-top:
|
|
443
|
+
padding-top: 0.125rem;
|
|
444
444
|
}
|
|
445
445
|
|
|
446
446
|
a.helper {
|
|
@@ -453,7 +453,7 @@ a.helper {
|
|
|
453
453
|
|
|
454
454
|
.field.round > .helper,
|
|
455
455
|
.field.round > .error {
|
|
456
|
-
left:
|
|
456
|
+
left: 1.5rem;
|
|
457
457
|
}
|
|
458
458
|
|
|
459
459
|
.field.invalid > .helper {
|
|
@@ -463,4 +463,4 @@ a.helper {
|
|
|
463
463
|
table td > .field {
|
|
464
464
|
max-height: 100%;
|
|
465
465
|
height: 100%;
|
|
466
|
-
}
|
|
466
|
+
}
|
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
.grid {
|
|
2
|
-
--grid-gap:
|
|
2
|
+
--grid-gap: 1rem;
|
|
3
|
+
|
|
3
4
|
display: grid;
|
|
4
|
-
grid-template-columns: repeat(12, calc(8.33% - var(--grid-gap) + (var(--grid-gap)/12)));
|
|
5
|
+
grid-template-columns: repeat(12, calc(8.33% - var(--grid-gap) + (var(--grid-gap) / 12)));
|
|
5
6
|
gap: var(--grid-gap);
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
* + .grid {
|
|
9
|
-
margin-top:
|
|
10
|
+
margin-top: 1rem;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
.grid.no-space {
|
|
13
|
-
--grid-gap:
|
|
14
|
+
--grid-gap: 0;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
.grid.medium-space {
|
|
17
|
-
--grid-gap:
|
|
18
|
+
--grid-gap: 1.5rem;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
.grid.large-space {
|
|
21
|
-
--grid-gap:
|
|
22
|
+
--grid-gap: 2rem;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
.s1 {
|
|
@@ -73,98 +74,98 @@
|
|
|
73
74
|
.m1 {
|
|
74
75
|
grid-area: auto/span 1;
|
|
75
76
|
}
|
|
76
|
-
|
|
77
|
+
|
|
77
78
|
.m2 {
|
|
78
79
|
grid-area: auto/span 2;
|
|
79
80
|
}
|
|
80
|
-
|
|
81
|
+
|
|
81
82
|
.m3 {
|
|
82
83
|
grid-area: auto/span 3;
|
|
83
84
|
}
|
|
84
|
-
|
|
85
|
+
|
|
85
86
|
.m4 {
|
|
86
87
|
grid-area: auto/span 4;
|
|
87
88
|
}
|
|
88
|
-
|
|
89
|
+
|
|
89
90
|
.m5 {
|
|
90
91
|
grid-area: auto/span 5;
|
|
91
92
|
}
|
|
92
|
-
|
|
93
|
+
|
|
93
94
|
.m6 {
|
|
94
95
|
grid-area: auto/span 6;
|
|
95
96
|
}
|
|
96
|
-
|
|
97
|
+
|
|
97
98
|
.m7 {
|
|
98
99
|
grid-area: auto/span 7;
|
|
99
100
|
}
|
|
100
|
-
|
|
101
|
+
|
|
101
102
|
.m8 {
|
|
102
103
|
grid-area: auto/span 8;
|
|
103
104
|
}
|
|
104
|
-
|
|
105
|
+
|
|
105
106
|
.m9 {
|
|
106
107
|
grid-area: auto/span 9;
|
|
107
108
|
}
|
|
108
|
-
|
|
109
|
+
|
|
109
110
|
.m10 {
|
|
110
111
|
grid-area: auto/span 10;
|
|
111
112
|
}
|
|
112
|
-
|
|
113
|
+
|
|
113
114
|
.m11 {
|
|
114
115
|
grid-area: auto/span 11;
|
|
115
116
|
}
|
|
116
|
-
|
|
117
|
+
|
|
117
118
|
.m12 {
|
|
118
119
|
grid-area: auto/span 12;
|
|
119
|
-
}
|
|
120
|
+
}
|
|
120
121
|
}
|
|
121
122
|
|
|
122
123
|
@media only screen and (min-width: 993px) {
|
|
123
124
|
.l1 {
|
|
124
125
|
grid-area: auto/span 1;
|
|
125
126
|
}
|
|
126
|
-
|
|
127
|
+
|
|
127
128
|
.l2 {
|
|
128
129
|
grid-area: auto/span 2;
|
|
129
130
|
}
|
|
130
|
-
|
|
131
|
+
|
|
131
132
|
.l3 {
|
|
132
133
|
grid-area: auto/span 3;
|
|
133
134
|
}
|
|
134
|
-
|
|
135
|
+
|
|
135
136
|
.l4 {
|
|
136
137
|
grid-area: auto/span 4;
|
|
137
138
|
}
|
|
138
|
-
|
|
139
|
+
|
|
139
140
|
.l5 {
|
|
140
141
|
grid-area: auto/span 5;
|
|
141
142
|
}
|
|
142
|
-
|
|
143
|
+
|
|
143
144
|
.l6 {
|
|
144
145
|
grid-area: auto/span 6;
|
|
145
146
|
}
|
|
146
|
-
|
|
147
|
+
|
|
147
148
|
.l7 {
|
|
148
149
|
grid-area: auto/span 7;
|
|
149
150
|
}
|
|
150
|
-
|
|
151
|
+
|
|
151
152
|
.l8 {
|
|
152
153
|
grid-area: auto/span 8;
|
|
153
154
|
}
|
|
154
|
-
|
|
155
|
+
|
|
155
156
|
.l9 {
|
|
156
157
|
grid-area: auto/span 9;
|
|
157
158
|
}
|
|
158
|
-
|
|
159
|
+
|
|
159
160
|
.l10 {
|
|
160
161
|
grid-area: auto/span 10;
|
|
161
162
|
}
|
|
162
|
-
|
|
163
|
+
|
|
163
164
|
.l11 {
|
|
164
165
|
grid-area: auto/span 11;
|
|
165
166
|
}
|
|
166
|
-
|
|
167
|
+
|
|
167
168
|
.l12 {
|
|
168
169
|
grid-area: auto/span 12;
|
|
169
170
|
}
|
|
170
|
-
}
|
|
171
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
i {
|
|
2
|
-
font-family:
|
|
2
|
+
font-family: "Material Symbols Outlined";
|
|
3
3
|
font-weight: normal;
|
|
4
4
|
font-style: normal;
|
|
5
|
-
font-size:
|
|
5
|
+
font-size: 1.5rem;
|
|
6
6
|
line-height: 1;
|
|
7
7
|
letter-spacing: normal;
|
|
8
8
|
text-transform: none;
|
|
@@ -10,37 +10,37 @@ i {
|
|
|
10
10
|
white-space: nowrap;
|
|
11
11
|
word-wrap: normal;
|
|
12
12
|
direction: ltr;
|
|
13
|
-
-webkit-font-feature-settings:
|
|
13
|
+
-webkit-font-feature-settings: "liga";
|
|
14
14
|
-webkit-font-smoothing: antialiased;
|
|
15
15
|
vertical-align: middle;
|
|
16
16
|
text-align: center;
|
|
17
17
|
overflow: hidden;
|
|
18
|
-
width:
|
|
19
|
-
min-width:
|
|
18
|
+
width: 1.5rem;
|
|
19
|
+
min-width: 1.5rem;
|
|
20
20
|
box-sizing: content-box;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
i.tiny {
|
|
24
|
-
font-size:
|
|
25
|
-
width:
|
|
26
|
-
min-width:
|
|
24
|
+
font-size: 1rem;
|
|
25
|
+
width: 1rem;
|
|
26
|
+
min-width: 1rem;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
i.small {
|
|
30
|
-
font-size:
|
|
31
|
-
width:
|
|
32
|
-
min-width:
|
|
30
|
+
font-size: 1.25rem;
|
|
31
|
+
width: 1.25rem;
|
|
32
|
+
min-width: 1.25rem;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
i.large {
|
|
36
|
-
font-size:
|
|
37
|
-
width:
|
|
38
|
-
min-width:
|
|
36
|
+
font-size: 1.75rem;
|
|
37
|
+
width: 1.75rem;
|
|
38
|
+
min-width: 1.75rem;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
i.extra {
|
|
42
|
-
font-size:
|
|
43
|
-
width:
|
|
42
|
+
font-size: 2rem;
|
|
43
|
+
width: 2rem;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
i.fill,
|
|
@@ -48,5 +48,5 @@ a.row:hover > i,
|
|
|
48
48
|
a.row:focus > i,
|
|
49
49
|
.transparent:hover > i,
|
|
50
50
|
.transparent:focus > i {
|
|
51
|
-
font-variation-settings:
|
|
52
|
-
}
|
|
51
|
+
font-variation-settings: "FILL" 1;
|
|
52
|
+
}
|