forked from IAmMajo/FDB-Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (94 loc) · 2.1 KB
/
style.css
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
:root {
--primary: #666000;
--on-primary: #ffffff;
--primary-container: #efe750;
--on-primary-container: #1e1c00;
--secondary: #626042;
--on-secondary: #ffffff;
--secondary-container: #e9e4be;
--on-secondary-container: #1d1c05;
--tertiary: #3e6654;
--on-tertiary: #ffffff;
--tertiary-container: #c1ecd6;
--on-tertiary-container: #002115;
--error: #ba1b1b;
--error-container: #ffdad4;
--on-error: #ffffff;
--on-error-container: #410001;
--background: #fffcf3;
--on-background: #1c1c16;
--surface: #fffcf3;
--on-surface: #1c1c16;
--surface-variant: #e7e3d1;
--on-surface-variant: #49473a;
--outline: #797768;
--inverse-on-surface: #f4f0e7;
--inverse-surface: #31302b;
--overlay: rgba(0, 0, 0, 0.5);
--active: rgba(0, 0, 0, 0.1);
}
#chips {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.invisible {
display: none !important;
}
article {
max-width: 768rem;
margin: auto;
}
input[disabled] {
cursor: auto;
}
#file-icon,
#loader {
display: block;
font-size: 192rem;
width: 192rem;
margin: auto;
}
#loader {
height: 192rem;
}
.toast {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
}
.link {
vertical-align: baseline;
}
@media (prefers-color-scheme: dark) {
:root {
--primary: #d2cb36;
--on-primary: #353200;
--primary-container: #4c4800;
--on-primary-container: #efe750;
--secondary: #ccc8a4;
--on-secondary: #333118;
--secondary-container: #4a482c;
--on-secondary-container: #e9e4be;
--tertiary: #a5d0ba;
--on-tertiary: #0d3728;
--tertiary-container: #274e3e;
--on-tertiary-container: #c1ecd6;
--error: #ffb4a9;
--error-container: #930006;
--on-error: #680003;
--on-error-container: #ffdad4;
--background: #1c1c16;
--on-background: #e6e2da;
--surface: #1c1c16;
--on-surface: #e6e2da;
--surface-variant: #49473a;
--on-surface-variant: #cac7b5;
--outline: #949181;
--inverse-on-surface: #1c1c16;
--inverse-surface: #e6e2da;
--overlay: rgba(0, 0, 0, 0.5);
--active: rgba(255, 255, 255, 0.2);
}
}