-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
632 lines (611 loc) · 23.6 KB
/
style.css
File metadata and controls
632 lines (611 loc) · 23.6 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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
body {
--md-sys-color-primary: #aed285;
--md-sys-color-primary-rgb: 174 210 133;
--md-sys-color-on-primary: #1d3700;
--md-sys-color-on-primary-rgb: 29 55 0;
--md-sys-color-primary-container: #324f10;
--md-sys-color-primary-container-rgb: 50 79 16;
--md-sys-color-on-primary-container: #c9ee9e;
--md-sys-color-on-primary-container-rgb: 201 238 158;
--md-sys-color-secondary: #c1cab2;
--md-sys-color-secondary-rgb: 193 202 178;
--md-sys-color-on-secondary: #2b3322;
--md-sys-color-on-secondary-rgb: 43 51 34;
--md-sys-color-secondary-container: #414937;
--md-sys-color-secondary-container-rgb: 65 73 55;
--md-sys-color-on-secondary-container: #dde6cd;
--md-sys-color-on-secondary-container-rgb: 221 230 205;
--md-sys-color-tertiary: #a9ceca;
--md-sys-color-tertiary-rgb: 169 206 202;
--md-sys-color-on-tertiary: #123634;
--md-sys-color-on-tertiary-rgb: 18 54 52;
--md-sys-color-tertiary-container: #2b4c4a;
--md-sys-color-tertiary-container-rgb: 43 76 74;
--md-sys-color-on-tertiary-container: #c5eae7;
--md-sys-color-on-tertiary-container-rgb: 197 234 231;
--md-sys-color-error: #ffb4ab;
--md-sys-color-error-rgb: 255 180 171;
--md-sys-color-on-error: #690005;
--md-sys-color-on-error-rgb: 105 0 5;
--md-sys-color-error-container: #93000a;
--md-sys-color-error-container-rgb: 147 0 10;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-on-error-container-rgb: 255 180 171;
--md-sys-color-background: #1b1c18;
--md-sys-color-background-rgb: 27 28 24;
--md-sys-color-on-background: #e4e3dd;
--md-sys-color-on-background-rgb: 228 227 221;
--md-sys-color-surface: #1b1c18;
--md-sys-color-surface-rgb: 27 28 24;
--md-sys-color-on-surface: #e4e3dd;
--md-sys-color-on-surface-rgb: 228 227 221;
--md-sys-color-surface-variant: #45483f;
--md-sys-color-surface-variant-rgb: 69 72 63;
--md-sys-color-on-surface-variant: #c5c8bc;
--md-sys-color-on-surface-variant-rgb: 197 200 188;
--md-sys-color-outline: #8f9287;
--md-sys-color-outline-rgb: 143 146 135;
--md-sys-color-outline-variant: #45483f;
--md-sys-color-outline-variant-rgb: 69 72 63;
--md-sys-color-shadow: #000000;
--md-sys-color-shadow-rgb: 0 0 0;
--md-sys-color-scrim: #000000;
--md-sys-color-scrim-rgb: 0 0 0;
--md-sys-color-inverse-surface: #e4e3dd;
--md-sys-color-inverse-surface-rgb: 228 227 221;
--md-sys-color-inverse-on-surface: #30312d;
--md-sys-color-inverse-on-surface-rgb: 48 49 45;
--md-sys-color-inverse-primary: #496727;
--md-sys-color-inverse-primary-rgb: 73 103 39;
--md-sys-color-surface-tint: #aed285;
--md-sys-color-surface-tint-rgb: 174 210 133;
--md-sys-color-surface-tint-color: #aed285;
--md-sys-color-surface-tint-color-rgb: 174 210 133;
--md-sys-color-primary-light: #496727;
--md-sys-color-primary-light-rgb: 73 103 39;
--md-sys-color-on-primary-light: #ffffff;
--md-sys-color-on-primary-light-rgb: 255 255 255;
--md-sys-color-primary-container-light: #c9ee9e;
--md-sys-color-primary-container-light-rgb: 201 238 158;
--md-sys-color-on-primary-container-light: #0f2000;
--md-sys-color-on-primary-container-light-rgb: 15 32 0;
--md-sys-color-secondary-light: #59614e;
--md-sys-color-secondary-light-rgb: 89 97 78;
--md-sys-color-on-secondary-light: #ffffff;
--md-sys-color-on-secondary-light-rgb: 255 255 255;
--md-sys-color-secondary-container-light: #dde6cd;
--md-sys-color-secondary-container-light-rgb: 221 230 205;
--md-sys-color-on-secondary-container-light: #171e0e;
--md-sys-color-on-secondary-container-light-rgb: 23 30 14;
--md-sys-color-tertiary-light: #426462;
--md-sys-color-tertiary-light-rgb: 66 100 98;
--md-sys-color-on-tertiary-light: #ffffff;
--md-sys-color-on-tertiary-light-rgb: 255 255 255;
--md-sys-color-tertiary-container-light: #c5eae7;
--md-sys-color-tertiary-container-light-rgb: 197 234 231;
--md-sys-color-on-tertiary-container-light: #00201f;
--md-sys-color-on-tertiary-container-light-rgb: 0 32 31;
--md-sys-color-error-light: #ba1a1a;
--md-sys-color-error-light-rgb: 186 26 26;
--md-sys-color-on-error-light: #ffffff;
--md-sys-color-on-error-light-rgb: 255 255 255;
--md-sys-color-error-container-light: #ffdad6;
--md-sys-color-error-container-light-rgb: 255 218 214;
--md-sys-color-on-error-container-light: #410002;
--md-sys-color-on-error-container-light-rgb: 65 0 2;
--md-sys-color-background-light: #fefcf6;
--md-sys-color-background-light-rgb: 254 252 246;
--md-sys-color-on-background-light: #1b1c18;
--md-sys-color-on-background-light-rgb: 27 28 24;
--md-sys-color-surface-light: #fefcf6;
--md-sys-color-surface-light-rgb: 254 252 246;
--md-sys-color-on-surface-light: #1b1c18;
--md-sys-color-on-surface-light-rgb: 27 28 24;
--md-sys-color-surface-variant-light: #e2e4d8;
--md-sys-color-surface-variant-light-rgb: 226 228 216;
--md-sys-color-on-surface-variant-light: #45483f;
--md-sys-color-on-surface-variant-light-rgb: 69 72 63;
--md-sys-color-outline-light: #75786e;
--md-sys-color-outline-light-rgb: 117 120 110;
--md-sys-color-outline-variant-light: #c5c8bc;
--md-sys-color-outline-variant-light-rgb: 197 200 188;
--md-sys-color-shadow-light: #000000;
--md-sys-color-shadow-light-rgb: 0 0 0;
--md-sys-color-scrim-light: #000000;
--md-sys-color-scrim-light-rgb: 0 0 0;
--md-sys-color-inverse-surface-light: #30312d;
--md-sys-color-inverse-surface-light-rgb: 48 49 45;
--md-sys-color-inverse-on-surface-light: #f2f1eb;
--md-sys-color-inverse-on-surface-light-rgb: 242 241 235;
--md-sys-color-inverse-primary-light: #aed285;
--md-sys-color-inverse-primary-light-rgb: 174 210 133;
--md-sys-color-surface-tint-light: #496727;
--md-sys-color-surface-tint-light-rgb: 73 103 39;
--md-sys-color-surface-tint-color-light: #496727;
--md-sys-color-surface-tint-color-light-rgb: 73 103 39;
--md-sys-color-primary-dark: #aed285;
--md-sys-color-primary-dark-rgb: 174 210 133;
--md-sys-color-on-primary-dark: #1d3700;
--md-sys-color-on-primary-dark-rgb: 29 55 0;
--md-sys-color-primary-container-dark: #324f10;
--md-sys-color-primary-container-dark-rgb: 50 79 16;
--md-sys-color-on-primary-container-dark: #c9ee9e;
--md-sys-color-on-primary-container-dark-rgb: 201 238 158;
--md-sys-color-secondary-dark: #c1cab2;
--md-sys-color-secondary-dark-rgb: 193 202 178;
--md-sys-color-on-secondary-dark: #2b3322;
--md-sys-color-on-secondary-dark-rgb: 43 51 34;
--md-sys-color-secondary-container-dark: #414937;
--md-sys-color-secondary-container-dark-rgb: 65 73 55;
--md-sys-color-on-secondary-container-dark: #dde6cd;
--md-sys-color-on-secondary-container-dark-rgb: 221 230 205;
--md-sys-color-tertiary-dark: #a9ceca;
--md-sys-color-tertiary-dark-rgb: 169 206 202;
--md-sys-color-on-tertiary-dark: #123634;
--md-sys-color-on-tertiary-dark-rgb: 18 54 52;
--md-sys-color-tertiary-container-dark: #2b4c4a;
--md-sys-color-tertiary-container-dark-rgb: 43 76 74;
--md-sys-color-on-tertiary-container-dark: #c5eae7;
--md-sys-color-on-tertiary-container-dark-rgb: 197 234 231;
--md-sys-color-error-dark: #ffb4ab;
--md-sys-color-error-dark-rgb: 255 180 171;
--md-sys-color-on-error-dark: #690005;
--md-sys-color-on-error-dark-rgb: 105 0 5;
--md-sys-color-error-container-dark: #93000a;
--md-sys-color-error-container-dark-rgb: 147 0 10;
--md-sys-color-on-error-container-dark: #ffb4ab;
--md-sys-color-on-error-container-dark-rgb: 255 180 171;
--md-sys-color-background-dark: #1b1c18;
--md-sys-color-background-dark-rgb: 27 28 24;
--md-sys-color-on-background-dark: #e4e3dd;
--md-sys-color-on-background-dark-rgb: 228 227 221;
--md-sys-color-surface-dark: #1b1c18;
--md-sys-color-surface-dark-rgb: 27 28 24;
--md-sys-color-on-surface-dark: #e4e3dd;
--md-sys-color-on-surface-dark-rgb: 228 227 221;
--md-sys-color-surface-variant-dark: #45483f;
--md-sys-color-surface-variant-dark-rgb: 69 72 63;
--md-sys-color-on-surface-variant-dark: #c5c8bc;
--md-sys-color-on-surface-variant-dark-rgb: 197 200 188;
--md-sys-color-outline-dark: #8f9287;
--md-sys-color-outline-dark-rgb: 143 146 135;
--md-sys-color-outline-variant-dark: #45483f;
--md-sys-color-outline-variant-dark-rgb: 69 72 63;
--md-sys-color-shadow-dark: #000000;
--md-sys-color-shadow-dark-rgb: 0 0 0;
--md-sys-color-scrim-dark: #000000;
--md-sys-color-scrim-dark-rgb: 0 0 0;
--md-sys-color-inverse-surface-dark: #e4e3dd;
--md-sys-color-inverse-surface-dark-rgb: 228 227 221;
--md-sys-color-inverse-on-surface-dark: #30312d;
--md-sys-color-inverse-on-surface-dark-rgb: 48 49 45;
--md-sys-color-inverse-primary-dark: #496727;
--md-sys-color-inverse-primary-dark-rgb: 73 103 39;
--md-sys-color-surface-tint-dark: #aed285;
--md-sys-color-surface-tint-dark-rgb: 174 210 133;
--md-sys-color-surface-tint-color-dark: #aed285;
--md-sys-color-surface-tint-color-dark-rgb: 174 210 133;
--md-ref-palette-primary0: #000000;
--md-ref-palette-primary0-rgb: 0 0 0;
--md-ref-palette-primary5: #081400;
--md-ref-palette-primary5-rgb: 8 20 0;
--md-ref-palette-primary10: #0f2000;
--md-ref-palette-primary10-rgb: 15 32 0;
--md-ref-palette-primary15: #162b00;
--md-ref-palette-primary15-rgb: 22 43 0;
--md-ref-palette-primary20: #1d3700;
--md-ref-palette-primary20-rgb: 29 55 0;
--md-ref-palette-primary25: #254300;
--md-ref-palette-primary25-rgb: 37 67 0;
--md-ref-palette-primary30: #2d5000;
--md-ref-palette-primary30-rgb: 45 80 0;
--md-ref-palette-primary35: #375c07;
--md-ref-palette-primary35-rgb: 55 92 7;
--md-ref-palette-primary40: #426915;
--md-ref-palette-primary40-rgb: 66 105 21;
--md-ref-palette-primary50: #5a822d;
--md-ref-palette-primary50-rgb: 90 130 45;
--md-ref-palette-primary60: #739d44;
--md-ref-palette-primary60-rgb: 115 157 68;
--md-ref-palette-primary70: #8cb85c;
--md-ref-palette-primary70-rgb: 140 184 92;
--md-ref-palette-primary80: #a7d474;
--md-ref-palette-primary80-rgb: 167 212 116;
--md-ref-palette-primary90: #c2f18e;
--md-ref-palette-primary90-rgb: 194 241 142;
--md-ref-palette-primary95: #d2ff9e;
--md-ref-palette-primary95-rgb: 210 255 158;
--md-ref-palette-primary98: #f0ffd8;
--md-ref-palette-primary98-rgb: 240 255 216;
--md-ref-palette-primary99: #f8ffe9;
--md-ref-palette-primary99-rgb: 248 255 233;
--md-ref-palette-primary100: #ffffff;
--md-ref-palette-primary100-rgb: 255 255 255;
--md-ref-palette-secondary0: #000000;
--md-ref-palette-secondary0-rgb: 0 0 0;
--md-ref-palette-secondary5: #0b1303;
--md-ref-palette-secondary5-rgb: 11 19 3;
--md-ref-palette-secondary10: #151e0b;
--md-ref-palette-secondary10-rgb: 21 30 11;
--md-ref-palette-secondary15: #1f2915;
--md-ref-palette-secondary15-rgb: 31 41 21;
--md-ref-palette-secondary20: #2a331f;
--md-ref-palette-secondary20-rgb: 42 51 31;
--md-ref-palette-secondary25: #353f29;
--md-ref-palette-secondary25-rgb: 53 63 41;
--md-ref-palette-secondary30: #404a33;
--md-ref-palette-secondary30-rgb: 64 74 51;
--md-ref-palette-secondary35: #4b563e;
--md-ref-palette-secondary35-rgb: 75 86 62;
--md-ref-palette-secondary40: #57624a;
--md-ref-palette-secondary40-rgb: 87 98 74;
--md-ref-palette-secondary50: #707b61;
--md-ref-palette-secondary50-rgb: 112 123 97;
--md-ref-palette-secondary60: #899579;
--md-ref-palette-secondary60-rgb: 137 149 121;
--md-ref-palette-secondary70: #a4af93;
--md-ref-palette-secondary70-rgb: 164 175 147;
--md-ref-palette-secondary80: #bfcbad;
--md-ref-palette-secondary80-rgb: 191 203 173;
--md-ref-palette-secondary90: #dbe7c8;
--md-ref-palette-secondary90-rgb: 219 231 200;
--md-ref-palette-secondary95: #e9f5d6;
--md-ref-palette-secondary95-rgb: 233 245 214;
--md-ref-palette-secondary98: #f2fede;
--md-ref-palette-secondary98-rgb: 242 254 222;
--md-ref-palette-secondary99: #f8ffe9;
--md-ref-palette-secondary99-rgb: 248 255 233;
--md-ref-palette-secondary100: #ffffff;
--md-ref-palette-secondary100-rgb: 255 255 255;
--md-ref-palette-tertiary0: #000000;
--md-ref-palette-tertiary0-rgb: 0 0 0;
--md-ref-palette-tertiary5: #001413;
--md-ref-palette-tertiary5-rgb: 0 20 19;
--md-ref-palette-tertiary10: #00201f;
--md-ref-palette-tertiary10-rgb: 0 32 31;
--md-ref-palette-tertiary15: #002b2a;
--md-ref-palette-tertiary15-rgb: 0 43 42;
--md-ref-palette-tertiary20: #003735;
--md-ref-palette-tertiary20-rgb: 0 55 53;
--md-ref-palette-tertiary25: #104240;
--md-ref-palette-tertiary25-rgb: 16 66 64;
--md-ref-palette-tertiary30: #1f4e4c;
--md-ref-palette-tertiary30-rgb: 31 78 76;
--md-ref-palette-tertiary35: #2c5a57;
--md-ref-palette-tertiary35-rgb: 44 90 87;
--md-ref-palette-tertiary40: #386663;
--md-ref-palette-tertiary40-rgb: 56 102 99;
--md-ref-palette-tertiary50: #517f7c;
--md-ref-palette-tertiary50-rgb: 81 127 124;
--md-ref-palette-tertiary60: #6b9996;
--md-ref-palette-tertiary60-rgb: 107 153 150;
--md-ref-palette-tertiary70: #85b4b1;
--md-ref-palette-tertiary70-rgb: 133 180 177;
--md-ref-palette-tertiary80: #a0cfcc;
--md-ref-palette-tertiary80-rgb: 160 207 204;
--md-ref-palette-tertiary90: #bbece8;
--md-ref-palette-tertiary90-rgb: 187 236 232;
--md-ref-palette-tertiary95: #c9faf6;
--md-ref-palette-tertiary95-rgb: 201 250 246;
--md-ref-palette-tertiary98: #e3fffc;
--md-ref-palette-tertiary98-rgb: 227 255 252;
--md-ref-palette-tertiary99: #f2fffd;
--md-ref-palette-tertiary99-rgb: 242 255 253;
--md-ref-palette-tertiary100: #ffffff;
--md-ref-palette-tertiary100-rgb: 255 255 255;
--md-ref-palette-neutral0: #000000;
--md-ref-palette-neutral0-rgb: 0 0 0;
--md-ref-palette-neutral5: #10110d;
--md-ref-palette-neutral5-rgb: 16 17 13;
--md-ref-palette-neutral10: #1b1c18;
--md-ref-palette-neutral10-rgb: 27 28 24;
--md-ref-palette-neutral15: #252622;
--md-ref-palette-neutral15-rgb: 37 38 34;
--md-ref-palette-neutral20: #30312c;
--md-ref-palette-neutral20-rgb: 48 49 44;
--md-ref-palette-neutral25: #3b3c37;
--md-ref-palette-neutral25-rgb: 59 60 55;
--md-ref-palette-neutral30: #464742;
--md-ref-palette-neutral30-rgb: 70 71 66;
--md-ref-palette-neutral35: #52534d;
--md-ref-palette-neutral35-rgb: 82 83 77;
--md-ref-palette-neutral40: #5e5f59;
--md-ref-palette-neutral40-rgb: 94 95 89;
--md-ref-palette-neutral50: #777772;
--md-ref-palette-neutral50-rgb: 119 119 114;
--md-ref-palette-neutral60: #91918b;
--md-ref-palette-neutral60-rgb: 145 145 139;
--md-ref-palette-neutral70: #abaca5;
--md-ref-palette-neutral70-rgb: 171 172 165;
--md-ref-palette-neutral80: #c7c7c0;
--md-ref-palette-neutral80-rgb: 199 199 192;
--md-ref-palette-neutral90: #e3e3db;
--md-ref-palette-neutral90-rgb: 227 227 219;
--md-ref-palette-neutral95: #f2f1ea;
--md-ref-palette-neutral95-rgb: 242 241 234;
--md-ref-palette-neutral98: #fafaf2;
--md-ref-palette-neutral98-rgb: 250 250 242;
--md-ref-palette-neutral99: #fdfcf5;
--md-ref-palette-neutral99-rgb: 253 252 245;
--md-ref-palette-neutral100: #ffffff;
--md-ref-palette-neutral100-rgb: 255 255 255;
--md-ref-palette-neutral-variant0: #000000;
--md-ref-palette-neutral-variant0-rgb: 0 0 0;
--md-ref-palette-neutral-variant5: #0e120a;
--md-ref-palette-neutral-variant5-rgb: 14 18 10;
--md-ref-palette-neutral-variant10: #191d14;
--md-ref-palette-neutral-variant10-rgb: 25 29 20;
--md-ref-palette-neutral-variant15: #23271e;
--md-ref-palette-neutral-variant15-rgb: 35 39 30;
--md-ref-palette-neutral-variant20: #2e3228;
--md-ref-palette-neutral-variant20-rgb: 46 50 40;
--md-ref-palette-neutral-variant25: #393d32;
--md-ref-palette-neutral-variant25-rgb: 57 61 50;
--md-ref-palette-neutral-variant30: #44483d;
--md-ref-palette-neutral-variant30-rgb: 68 72 61;
--md-ref-palette-neutral-variant35: #505449;
--md-ref-palette-neutral-variant35-rgb: 80 84 73;
--md-ref-palette-neutral-variant40: #5c6054;
--md-ref-palette-neutral-variant40-rgb: 92 96 84;
--md-ref-palette-neutral-variant50: #75796c;
--md-ref-palette-neutral-variant50-rgb: 117 121 108;
--md-ref-palette-neutral-variant60: #8e9285;
--md-ref-palette-neutral-variant60-rgb: 142 146 133;
--md-ref-palette-neutral-variant70: #a9ad9f;
--md-ref-palette-neutral-variant70-rgb: 169 173 159;
--md-ref-palette-neutral-variant80: #c4c8ba;
--md-ref-palette-neutral-variant80-rgb: 196 200 186;
--md-ref-palette-neutral-variant90: #e1e4d5;
--md-ref-palette-neutral-variant90-rgb: 225 228 213;
--md-ref-palette-neutral-variant95: #eff2e3;
--md-ref-palette-neutral-variant95-rgb: 239 242 227;
--md-ref-palette-neutral-variant98: #f8fbec;
--md-ref-palette-neutral-variant98-rgb: 248 251 236;
--md-ref-palette-neutral-variant99: #fbfeee;
--md-ref-palette-neutral-variant99-rgb: 251 254 238;
--md-ref-palette-neutral-variant100: #ffffff;
--md-ref-palette-neutral-variant100-rgb: 255 255 255;
--md-ref-palette-error0: #000000;
--md-ref-palette-error0-rgb: 0 0 0;
--md-ref-palette-error5: #2d0001;
--md-ref-palette-error5-rgb: 45 0 1;
--md-ref-palette-error10: #410002;
--md-ref-palette-error10-rgb: 65 0 2;
--md-ref-palette-error15: #540003;
--md-ref-palette-error15-rgb: 84 0 3;
--md-ref-palette-error20: #690005;
--md-ref-palette-error20-rgb: 105 0 5;
--md-ref-palette-error25: #7e0007;
--md-ref-palette-error25-rgb: 126 0 7;
--md-ref-palette-error30: #93000a;
--md-ref-palette-error30-rgb: 147 0 10;
--md-ref-palette-error35: #a80710;
--md-ref-palette-error35-rgb: 168 7 16;
--md-ref-palette-error40: #ba1a1a;
--md-ref-palette-error40-rgb: 186 26 26;
--md-ref-palette-error50: #de3730;
--md-ref-palette-error50-rgb: 222 55 48;
--md-ref-palette-error60: #ff5449;
--md-ref-palette-error60-rgb: 255 84 73;
--md-ref-palette-error70: #ff897d;
--md-ref-palette-error70-rgb: 255 137 125;
--md-ref-palette-error80: #ffb4ab;
--md-ref-palette-error80-rgb: 255 180 171;
--md-ref-palette-error90: #ffdad6;
--md-ref-palette-error90-rgb: 255 218 214;
--md-ref-palette-error95: #ffedea;
--md-ref-palette-error95-rgb: 255 237 234;
--md-ref-palette-error98: #fff8f7;
--md-ref-palette-error98-rgb: 255 248 247;
--md-ref-palette-error99: #fffbff;
--md-ref-palette-error99-rgb: 255 251 255;
--md-ref-palette-error100: #ffffff;
--md-ref-palette-error100-rgb: 255 255 255;
margin:none;
padding: none;
background: var(--md-sys-color-background); }
@font-face { font-family: GSRegular;
src: url(fonts/GoogleSans-Regular.ttf); }
@font-face { font-family: GSMedium;
src: url(fonts/GoogleSans-Medium.ttf); }
@font-face { font-family: GSBold;
src: url(fonts/GoogleSans-Bold.ttf); }
@font-face { font-family: GSRegularItalic;
src: url(fonts/GoogleSans-Italic.ttf); }
@font-face { font-family: GSMediumItalic;
src: url(fonts/GoogleSans-MediumItalic.ttf); }
@font-face { font-family: GSBoldItalic;
src: url(fonts/GoogleSans-BoldItalic.ttf); }
div.divider {
width: 100%;
height: 1px;
margin:none;
background: var(--md-sys-color-primary-container); }
div.header {
margin-left: 5%;
margin-right:5%; }
div.container {
padding-left: 5%;
padding-right: 5%;
padding-top: 3%;
display: block; }
/* Filled button behavior */
a.button.filled {
text-decoration: none;
height: fit-content;
width: fit-content;
padding-left: 24pt;
padding-right: 24pt;
padding-top: 8pt;
padding-bottom: 8pt;
border-radius: 20pt;
transition: .2s;
font-family: GSRegular;
font-weight: lighter;
position: relative; }
a.button.filled.animated:hover {
border-radius: 5pt;
transition: .2s; }
/* Primary button colors */
a.primary {
background: var(--md-sys-color-primary);
color: var(--md-sys-color-on-primary); }
a.primary:visited {
background: var(--md-sys-color-primary);
color: var(--md-sys-color-on-primary); }
a.primary.animated:hover {
background: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container); }
/* Secondary button colors */
a.secondary {
background: var(--md-sys-color-secondary);
color: var(--md-sys-color-on-secondary); }
a.secondary:visited {
background: var(--md-sys-color-secondary);
color: var(--md-sys-color-on-secondary); }
a.secondary.animated:hover {
background: var(--md-sys-color-secondary-container);
color: var(--md-sys-color-on-secondary-container); }
/* Tertiary button colors */
a.tertiary {
background: var(--md-sys-color-tertiary);
color: var(--md-sys-color-on-tertiary); }
a.tertiary:visited {
background: var(--md-sys-color-tertiary);
color: var(--md-sys-color-on-tertiary); }
a.tertiary.animated:hover {
background: var(--md-sys-color-tertiary-container);
color: var(--md-sys-color-on-tertiary-container); }
/* Primary tonal button colors */
a.primary.tonal {
background: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container); }
a.primary.tonal:visited {
background: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container); }
a.primary.tonal.animated:hover {
background: var(--md-sys-color-primary);
color: var(--md-sys-color-on-primary); }
/* Secondary tonal button colors */
a.secondary.tonal {
background: var(--md-sys-color-secondary-container);
color: var(--md-sys-color-on-secondary-container); }
a.secondary.tonal:visited {
background: var(--md-sys-color-secondary-container);
color: var(--md-sys-color-on-secondary-container); }
a.secondary.tonal.animated:hover {
background: var(--md-sys-color-secondary);
color: var(--md-sys-color-on-secondary); }
/* Tertiary tonal button colors */
a.tertiary.tonal {
background: var(--md-sys-color-tertiary-container);
color: var(--md-sys-color-on-tertiary-container); }
a.tertiary.tonal:visited {
background: var(--md-sys-color-tertiary-container);
color: var(--md-sys-color-on-tertiary-container); }
a.tertiary.tonal.animated:hover {
background: var(--md-sys-color-tertiary);
color: var(--md-sys-color-on-tertiary); }
/* Switch behavior */
input.switch[type="checkbox"] {
position: relative;
width: 26pt;
height: 16pt;
-webkit-appearance: none;
border-radius: 8pt;
transition: .2s;
background: var(--md-sys-color-surface-variant);
outline: 1.5pt solid var(--md-sys-color-outline); }
input.switch:checked[type="checkbox"] {
transition: .2s;
outline: 0; }
input.switch[type="checkbox"]:before {
content: '';
position: absolute;
width: 8pt;
height: 8pt;
border-radius: 4pt;
top: 4pt;
left: 4pt;
background: var(--md-sys-color-outline);
transition: .2s; }
input.switch:checked[type="checkbox"]:before {
left: 12pt;
width: 12pt;
height: 12pt;
border-radius: 6pt;
transition: .2s;
top: 2pt; }
/* Switch hover behavior */
input.switch:hover[type="checkbox"]:before {
width: 10pt;
height: 10pt;
top: 3pt;
left: 3pt;
border-radius: 5pt; }
input.switch:checked:hover[type="checkbox"]:before {
left: 12pt;
width: 13pt;
height: 13pt;
border-radius: 6.5pt;
transition: .2s;
top: 1.5pt; }
/* Primary switch colors */
input.switch.primary:checked[type="checkbox"] {
background: var(--md-sys-color-primary); }
input.switch.primary:checked[type="checkbox"]:before {
background: var(--md-sys-color-on-primary); }
/* Secondary switch colors */
input.switch.secondary:checked[type="checkbox"] {
background: var(--md-sys-color-secondary); }
input.switch.secondary:checked[type="checkbox"]:before {
background: var(--md-sys-color-on-secondary); }
/* Tertiary switch colors */
input.switch.tertiary:checked[type="checkbox"] {
background: var(--md-sys-color-tertiary); }
input.switch.tertiary:checked[type="checkbox"]:before {
background: var(--md-sys-color-on-tertiary); }
/* Margin definition */
.mt-10 {
margin-top: 10pt; }
.mr-10 {
margin-right: 10pt; }
.mt-0 {
margin-top: 0; }
/* Display versions definition */
.display-inline {
display: inline; }
.display-inlineblock {
display: inline-block; }
.display-block {
display: block;
width: fit-content;
height: fit-content; }
/* Text labels */
h1,h2,h3,h4,h5,h6,p {
font-family: GSRegular;
font-weight: lighter;
color: var(--md-sys-color-on-background); }
h1.primary,h2.primary,h3.primary,h4.primary,h5.primary,h6.primary,p.primary {
color: var(--md-sys-color-primary);
}
/* Cards */
div.card {
border-radius: 20pt;
padding: 30pt 30pt 30pt 30pt;
margin: 0 0 20pt 0;
}
div.card.display-inlineblock {
vertical-align: top;
margin-right: 20pt;
}
/* Cards colors */
div.card.primary {
background-color: var(--md-ref-palette-primary15);
}
div.card.secondary {
background-color: var(--md-ref-palette-secondary15);
}
div.card.tertiary {
background-color: var(--md-ref-palette-tertiary15);
}