@materializecss/materialize 2.0.1-alpha → 2.0.3-alpha
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/Gruntfile.js +5 -2
- package/dist/css/materialize.css +1510 -288
- package/dist/css/materialize.min.css +2 -2
- package/dist/js/materialize.js +2782 -2688
- package/dist/js/materialize.min.js +2 -8967
- package/dist/js/materialize.min.js.map +1 -1
- package/dist/src/autocomplete.d.ts +143 -0
- package/dist/src/autocomplete.d.ts.map +1 -0
- package/dist/src/bounding.d.ts +7 -0
- package/dist/src/bounding.d.ts.map +1 -0
- package/dist/src/buttons.d.ts +65 -0
- package/dist/src/buttons.d.ts.map +1 -0
- package/dist/src/cards.d.ts +4 -0
- package/dist/src/cards.d.ts.map +1 -0
- package/dist/src/carousel.d.ts +131 -0
- package/dist/src/carousel.d.ts.map +1 -0
- package/dist/src/characterCounter.d.ts +37 -0
- package/dist/src/characterCounter.d.ts.map +1 -0
- package/dist/src/chips.d.ts +131 -0
- package/dist/src/chips.d.ts.map +1 -0
- package/dist/src/collapsible.d.ts +74 -0
- package/dist/src/collapsible.d.ts.map +1 -0
- package/dist/src/component.d.ts +74 -0
- package/dist/src/component.d.ts.map +1 -0
- package/dist/src/datepicker.d.ts +248 -0
- package/dist/src/datepicker.d.ts.map +1 -0
- package/dist/src/dropdown.d.ts +148 -0
- package/dist/src/dropdown.d.ts.map +1 -0
- package/dist/src/edges.d.ts +7 -0
- package/dist/src/edges.d.ts.map +1 -0
- package/dist/src/forms.d.ts +12 -0
- package/dist/src/forms.d.ts.map +1 -0
- package/dist/src/global.d.ts +60 -0
- package/dist/src/global.d.ts.map +1 -0
- package/dist/src/index.d.ts +27 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/materialbox.d.ts +92 -0
- package/dist/src/materialbox.d.ts.map +1 -0
- package/dist/src/modal.d.ts +119 -0
- package/dist/src/modal.d.ts.map +1 -0
- package/dist/src/parallax.d.ts +40 -0
- package/dist/src/parallax.d.ts.map +1 -0
- package/dist/src/pushpin.d.ts +52 -0
- package/dist/src/pushpin.d.ts.map +1 -0
- package/dist/src/range.d.ts +41 -0
- package/dist/src/range.d.ts.map +1 -0
- package/dist/src/scrollspy.d.ts +62 -0
- package/dist/src/scrollspy.d.ts.map +1 -0
- package/dist/src/select.d.ts +77 -0
- package/dist/src/select.d.ts.map +1 -0
- package/dist/src/sidenav.d.ts +122 -0
- package/dist/src/sidenav.d.ts.map +1 -0
- package/dist/src/slider.d.ts +103 -0
- package/dist/src/slider.d.ts.map +1 -0
- package/dist/src/tabs.d.ts +80 -0
- package/dist/src/tabs.d.ts.map +1 -0
- package/dist/src/tapTarget.d.ts +59 -0
- package/dist/src/tapTarget.d.ts.map +1 -0
- package/dist/src/timepicker.d.ts +208 -0
- package/dist/src/timepicker.d.ts.map +1 -0
- package/dist/src/toasts.d.ts +90 -0
- package/dist/src/toasts.d.ts.map +1 -0
- package/dist/src/tooltip.d.ts +112 -0
- package/dist/src/tooltip.d.ts.map +1 -0
- package/dist/src/utils.d.ts +97 -0
- package/dist/src/utils.d.ts.map +1 -0
- package/dist/src/waves.d.ts +16 -0
- package/dist/src/waves.d.ts.map +1 -0
- package/package.json +4 -1
- package/sass/components/_cards.scss +1 -1
- package/sass/components/_collapsible.scss +0 -41
- package/sass/components/_global.scss +53 -2
- package/sass/components/_grid.scss +28 -47
- package/sass/components/_icons-material-design.scss +2 -1
- package/sass/components/_navbar.scss +30 -27
- package/sass/components/_pulse.scss +1 -0
- package/sass/components/_sidenav.scss +63 -45
- package/sass/components/_theme_variables.scss +29 -49
- package/sass/components/_typography.scss +2 -2
- package/sass/components/_variables.scss +2 -0
- package/sass/components/colors.module.scss +180 -0
- package/sass/components/forms/_input-fields.scss +4 -10
- package/sass/components/theme.dark.module.scss +32 -0
- package/sass/components/theme.light.module.scss +32 -0
- package/sass/components/tokens.module.scss +272 -0
- package/sass/components/typography.module.scss +150 -0
- package/sass/materialize.scss +6 -4
- package/src/autocomplete.ts +188 -94
- package/src/buttons.ts +225 -260
- package/src/cards.ts +5 -6
- package/src/carousel.ts +611 -542
- package/src/characterCounter.ts +50 -21
- package/src/chips.ts +152 -63
- package/src/collapsible.ts +97 -32
- package/src/component.ts +99 -10
- package/src/datepicker.ts +905 -726
- package/src/dropdown.ts +573 -484
- package/src/edges.ts +4 -4
- package/src/forms.ts +36 -24
- package/src/global.ts +57 -328
- package/src/index.ts +26 -0
- package/src/materialbox.ts +354 -298
- package/src/modal.ts +296 -211
- package/src/parallax.ts +129 -105
- package/src/pushpin.ts +148 -103
- package/src/range.ts +166 -150
- package/src/scrollspy.ts +214 -174
- package/src/select.ts +434 -398
- package/src/sidenav.ts +447 -381
- package/src/slider.ts +421 -362
- package/src/tabs.ts +276 -222
- package/src/tapTarget.ts +246 -213
- package/src/timepicker.ts +738 -614
- package/src/toasts.ts +254 -230
- package/src/tooltip.ts +315 -252
- package/src/utils.ts +271 -0
- package/src/waves.ts +10 -10
package/dist/css/materialize.css
CHANGED
|
@@ -1,9 +1,841 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Materialize v2.0.
|
|
2
|
+
* Materialize v2.0.3-alpha (https://materializecss.github.io/materialize)
|
|
3
3
|
* Copyright 2014-2023 Materialize
|
|
4
4
|
* MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
|
|
5
5
|
*/
|
|
6
6
|
@charset "UTF-8";
|
|
7
|
+
:root {
|
|
8
|
+
--md-source: #006495;
|
|
9
|
+
/* primary */
|
|
10
|
+
--md-ref-palette-primary0: #000000;
|
|
11
|
+
--md-ref-palette-primary10: #001e30;
|
|
12
|
+
--md-ref-palette-primary20: #003450;
|
|
13
|
+
--md-ref-palette-primary25: #003f60;
|
|
14
|
+
--md-ref-palette-primary30: #004b71;
|
|
15
|
+
--md-ref-palette-primary35: #005783;
|
|
16
|
+
--md-ref-palette-primary40: #006495;
|
|
17
|
+
--md-ref-palette-primary50: #0f7eb8;
|
|
18
|
+
--md-ref-palette-primary60: #3d98d4;
|
|
19
|
+
--md-ref-palette-primary70: #5db3f0;
|
|
20
|
+
--md-ref-palette-primary80: #8fcdff;
|
|
21
|
+
--md-ref-palette-primary90: #cbe6ff;
|
|
22
|
+
--md-ref-palette-primary95: #e6f2ff;
|
|
23
|
+
--md-ref-palette-primary98: #f7f9ff;
|
|
24
|
+
--md-ref-palette-primary99: #fcfcff;
|
|
25
|
+
--md-ref-palette-primary100: #ffffff;
|
|
26
|
+
/* secondary */
|
|
27
|
+
--md-ref-palette-secondary0: #000000;
|
|
28
|
+
--md-ref-palette-secondary10: #0d1d29;
|
|
29
|
+
--md-ref-palette-secondary20: #22323f;
|
|
30
|
+
--md-ref-palette-secondary25: #2d3d4b;
|
|
31
|
+
--md-ref-palette-secondary30: #394856;
|
|
32
|
+
--md-ref-palette-secondary35: #445462;
|
|
33
|
+
--md-ref-palette-secondary40: #50606f;
|
|
34
|
+
--md-ref-palette-secondary50: #697988;
|
|
35
|
+
--md-ref-palette-secondary60: #8293a2;
|
|
36
|
+
--md-ref-palette-secondary70: #9dadbd;
|
|
37
|
+
--md-ref-palette-secondary80: #b8c8d9;
|
|
38
|
+
--md-ref-palette-secondary90: #d4e4f6;
|
|
39
|
+
--md-ref-palette-secondary95: #e6f2ff;
|
|
40
|
+
--md-ref-palette-secondary98: #f7f9ff;
|
|
41
|
+
--md-ref-palette-secondary99: #fcfcff;
|
|
42
|
+
--md-ref-palette-secondary100: #ffffff;
|
|
43
|
+
/* tertiary */
|
|
44
|
+
--md-ref-palette-tertiary0: #000000;
|
|
45
|
+
--md-ref-palette-tertiary10: #211634;
|
|
46
|
+
--md-ref-palette-tertiary20: #362b4a;
|
|
47
|
+
--md-ref-palette-tertiary25: #423656;
|
|
48
|
+
--md-ref-palette-tertiary30: #4d4162;
|
|
49
|
+
--md-ref-palette-tertiary35: #594c6e;
|
|
50
|
+
--md-ref-palette-tertiary40: #66587b;
|
|
51
|
+
--md-ref-palette-tertiary50: #7f7195;
|
|
52
|
+
--md-ref-palette-tertiary60: #998ab0;
|
|
53
|
+
--md-ref-palette-tertiary70: #b4a4cb;
|
|
54
|
+
--md-ref-palette-tertiary80: #d0bfe7;
|
|
55
|
+
--md-ref-palette-tertiary90: #ecdcff;
|
|
56
|
+
--md-ref-palette-tertiary95: #f7edff;
|
|
57
|
+
--md-ref-palette-tertiary98: #fef7ff;
|
|
58
|
+
--md-ref-palette-tertiary99: #fffbff;
|
|
59
|
+
--md-ref-palette-tertiary100: #ffffff;
|
|
60
|
+
/* neutral */
|
|
61
|
+
--md-ref-palette-neutral0: #000000;
|
|
62
|
+
--md-ref-palette-neutral10: #1a1c1e;
|
|
63
|
+
--md-ref-palette-neutral20: #2e3133;
|
|
64
|
+
--md-ref-palette-neutral25: #3a3c3e;
|
|
65
|
+
--md-ref-palette-neutral30: #454749;
|
|
66
|
+
--md-ref-palette-neutral35: #515255;
|
|
67
|
+
--md-ref-palette-neutral40: #5d5e61;
|
|
68
|
+
--md-ref-palette-neutral50: #76777a;
|
|
69
|
+
--md-ref-palette-neutral60: #8f9194;
|
|
70
|
+
--md-ref-palette-neutral70: #aaabae;
|
|
71
|
+
--md-ref-palette-neutral80: #c6c6c9;
|
|
72
|
+
--md-ref-palette-neutral90: #e2e2e5;
|
|
73
|
+
--md-ref-palette-neutral95: #f0f0f3;
|
|
74
|
+
--md-ref-palette-neutral98: #f9f9fc;
|
|
75
|
+
--md-ref-palette-neutral99: #fcfcff;
|
|
76
|
+
--md-ref-palette-neutral100: #ffffff;
|
|
77
|
+
/* neutral-variant */
|
|
78
|
+
--md-ref-palette-neutral-variant0: #000000;
|
|
79
|
+
--md-ref-palette-neutral-variant10: #161c22;
|
|
80
|
+
--md-ref-palette-neutral-variant20: #2b3137;
|
|
81
|
+
--md-ref-palette-neutral-variant25: #363c42;
|
|
82
|
+
--md-ref-palette-neutral-variant30: #41474d;
|
|
83
|
+
--md-ref-palette-neutral-variant35: #4d5359;
|
|
84
|
+
--md-ref-palette-neutral-variant40: #595f65;
|
|
85
|
+
--md-ref-palette-neutral-variant50: #72787e;
|
|
86
|
+
--md-ref-palette-neutral-variant60: #8b9198;
|
|
87
|
+
--md-ref-palette-neutral-variant70: #a6acb3;
|
|
88
|
+
--md-ref-palette-neutral-variant80: #c1c7ce;
|
|
89
|
+
--md-ref-palette-neutral-variant90: #dee3ea;
|
|
90
|
+
--md-ref-palette-neutral-variant95: #ecf1f9;
|
|
91
|
+
--md-ref-palette-neutral-variant98: #f7f9ff;
|
|
92
|
+
--md-ref-palette-neutral-variant99: #fcfcff;
|
|
93
|
+
--md-ref-palette-neutral-variant100: #ffffff;
|
|
94
|
+
/* error */
|
|
95
|
+
--md-ref-palette-error0: #000000;
|
|
96
|
+
--md-ref-palette-error10: #410002;
|
|
97
|
+
--md-ref-palette-error20: #690005;
|
|
98
|
+
--md-ref-palette-error25: #7e0007;
|
|
99
|
+
--md-ref-palette-error30: #93000a;
|
|
100
|
+
--md-ref-palette-error35: #a80710;
|
|
101
|
+
--md-ref-palette-error40: #ba1a1a;
|
|
102
|
+
--md-ref-palette-error50: #de3730;
|
|
103
|
+
--md-ref-palette-error60: #ff5449;
|
|
104
|
+
--md-ref-palette-error70: #ff897d;
|
|
105
|
+
--md-ref-palette-error80: #ffb4ab;
|
|
106
|
+
--md-ref-palette-error90: #ffdad6;
|
|
107
|
+
--md-ref-palette-error95: #ffedea;
|
|
108
|
+
--md-ref-palette-error98: #fff8f7;
|
|
109
|
+
--md-ref-palette-error99: #fffbff;
|
|
110
|
+
--md-ref-palette-error100: #ffffff;
|
|
111
|
+
/* light */
|
|
112
|
+
--md-sys-color-primary-light: #006495;
|
|
113
|
+
--md-sys-color-on-primary-light: #ffffff;
|
|
114
|
+
--md-sys-color-primary-container-light: #cbe6ff;
|
|
115
|
+
--md-sys-color-on-primary-container-light: #001e30;
|
|
116
|
+
--md-sys-color-secondary-light: #50606f;
|
|
117
|
+
--md-sys-color-on-secondary-light: #ffffff;
|
|
118
|
+
--md-sys-color-secondary-container-light: #d4e4f6;
|
|
119
|
+
--md-sys-color-on-secondary-container-light: #0d1d29;
|
|
120
|
+
--md-sys-color-tertiary-light: #66587b;
|
|
121
|
+
--md-sys-color-on-tertiary-light: #ffffff;
|
|
122
|
+
--md-sys-color-tertiary-container-light: #ecdcff;
|
|
123
|
+
--md-sys-color-on-tertiary-container-light: #211634;
|
|
124
|
+
--md-sys-color-error-light: #ba1a1a;
|
|
125
|
+
--md-sys-color-error-container-light: #ffdad6;
|
|
126
|
+
--md-sys-color-on-error-light: #ffffff;
|
|
127
|
+
--md-sys-color-on-error-container-light: #410002;
|
|
128
|
+
--md-sys-color-background-light: #fcfcff;
|
|
129
|
+
--md-sys-color-on-background-light: #1a1c1e;
|
|
130
|
+
--md-sys-color-surface-light: #fcfcff;
|
|
131
|
+
--md-sys-color-on-surface-light: #1a1c1e;
|
|
132
|
+
--md-sys-color-surface-variant-light: #dee3ea;
|
|
133
|
+
--md-sys-color-on-surface-variant-light: #41474d;
|
|
134
|
+
--md-sys-color-outline-light: #72787e;
|
|
135
|
+
--md-sys-color-inverse-on-surface-light: #f0f0f3;
|
|
136
|
+
--md-sys-color-inverse-surface-light: #2e3133;
|
|
137
|
+
--md-sys-color-inverse-primary-light: #8fcdff;
|
|
138
|
+
--md-sys-color-shadow-light: #000000;
|
|
139
|
+
--md-sys-color-surface-tint-light: #006495;
|
|
140
|
+
--md-sys-color-outline-variant-light: #c1c7ce;
|
|
141
|
+
--md-sys-color-scrim-light: #000000;
|
|
142
|
+
/* dark */
|
|
143
|
+
--md-sys-color-primary-dark: #8fcdff;
|
|
144
|
+
--md-sys-color-on-primary-dark: #003450;
|
|
145
|
+
--md-sys-color-primary-container-dark: #004b71;
|
|
146
|
+
--md-sys-color-on-primary-container-dark: #cbe6ff;
|
|
147
|
+
--md-sys-color-secondary-dark: #b8c8d9;
|
|
148
|
+
--md-sys-color-on-secondary-dark: #22323f;
|
|
149
|
+
--md-sys-color-secondary-container-dark: #394856;
|
|
150
|
+
--md-sys-color-on-secondary-container-dark: #d4e4f6;
|
|
151
|
+
--md-sys-color-tertiary-dark: #d0bfe7;
|
|
152
|
+
--md-sys-color-on-tertiary-dark: #362b4a;
|
|
153
|
+
--md-sys-color-tertiary-container-dark: #4d4162;
|
|
154
|
+
--md-sys-color-on-tertiary-container-dark: #ecdcff;
|
|
155
|
+
--md-sys-color-error-dark: #ffb4ab;
|
|
156
|
+
--md-sys-color-error-container-dark: #93000a;
|
|
157
|
+
--md-sys-color-on-error-dark: #690005;
|
|
158
|
+
--md-sys-color-on-error-container-dark: #ffdad6;
|
|
159
|
+
--md-sys-color-background-dark: #1a1c1e;
|
|
160
|
+
--md-sys-color-on-background-dark: #e2e2e5;
|
|
161
|
+
--md-sys-color-surface-dark: #1a1c1e;
|
|
162
|
+
--md-sys-color-on-surface-dark: #e2e2e5;
|
|
163
|
+
--md-sys-color-surface-variant-dark: #41474d;
|
|
164
|
+
--md-sys-color-on-surface-variant-dark: #c1c7ce;
|
|
165
|
+
--md-sys-color-outline-dark: #8b9198;
|
|
166
|
+
--md-sys-color-inverse-on-surface-dark: #1a1c1e;
|
|
167
|
+
--md-sys-color-inverse-surface-dark: #e2e2e5;
|
|
168
|
+
--md-sys-color-inverse-primary-dark: #006495;
|
|
169
|
+
--md-sys-color-shadow-dark: #000000;
|
|
170
|
+
--md-sys-color-surface-tint-dark: #8fcdff;
|
|
171
|
+
--md-sys-color-outline-variant-dark: #41474d;
|
|
172
|
+
--md-sys-color-scrim-dark: #000000;
|
|
173
|
+
/* display - large */
|
|
174
|
+
--md-sys-typescale-display-large-font-family-name: Roboto;
|
|
175
|
+
--md-sys-typescale-display-large-font-family-style: Regular;
|
|
176
|
+
--md-sys-typescale-display-large-font-weight: 400px;
|
|
177
|
+
--md-sys-typescale-display-large-font-size: 57px;
|
|
178
|
+
--md-sys-typescale-display-large-line-height: 64px;
|
|
179
|
+
--md-sys-typescale-display-large-letter-spacing: -0.25px;
|
|
180
|
+
/* display - medium */
|
|
181
|
+
--md-sys-typescale-display-medium-font-family-name: Roboto;
|
|
182
|
+
--md-sys-typescale-display-medium-font-family-style: Regular;
|
|
183
|
+
--md-sys-typescale-display-medium-font-weight: 400px;
|
|
184
|
+
--md-sys-typescale-display-medium-font-size: 45px;
|
|
185
|
+
--md-sys-typescale-display-medium-line-height: 52px;
|
|
186
|
+
--md-sys-typescale-display-medium-letter-spacing: 0px;
|
|
187
|
+
/* display - small */
|
|
188
|
+
--md-sys-typescale-display-small-font-family-name: Roboto;
|
|
189
|
+
--md-sys-typescale-display-small-font-family-style: Regular;
|
|
190
|
+
--md-sys-typescale-display-small-font-weight: 400px;
|
|
191
|
+
--md-sys-typescale-display-small-font-size: 36px;
|
|
192
|
+
--md-sys-typescale-display-small-line-height: 44px;
|
|
193
|
+
--md-sys-typescale-display-small-letter-spacing: 0px;
|
|
194
|
+
/* headline - large */
|
|
195
|
+
--md-sys-typescale-headline-large-font-family-name: Roboto;
|
|
196
|
+
--md-sys-typescale-headline-large-font-family-style: Regular;
|
|
197
|
+
--md-sys-typescale-headline-large-font-weight: 400px;
|
|
198
|
+
--md-sys-typescale-headline-large-font-size: 32px;
|
|
199
|
+
--md-sys-typescale-headline-large-line-height: 40px;
|
|
200
|
+
--md-sys-typescale-headline-large-letter-spacing: 0px;
|
|
201
|
+
/* headline - medium */
|
|
202
|
+
--md-sys-typescale-headline-medium-font-family-name: Roboto;
|
|
203
|
+
--md-sys-typescale-headline-medium-font-family-style: Regular;
|
|
204
|
+
--md-sys-typescale-headline-medium-font-weight: 400px;
|
|
205
|
+
--md-sys-typescale-headline-medium-font-size: 28px;
|
|
206
|
+
--md-sys-typescale-headline-medium-line-height: 36px;
|
|
207
|
+
--md-sys-typescale-headline-medium-letter-spacing: 0px;
|
|
208
|
+
/* headline - small */
|
|
209
|
+
--md-sys-typescale-headline-small-font-family-name: Roboto;
|
|
210
|
+
--md-sys-typescale-headline-small-font-family-style: Regular;
|
|
211
|
+
--md-sys-typescale-headline-small-font-weight: 400px;
|
|
212
|
+
--md-sys-typescale-headline-small-font-size: 24px;
|
|
213
|
+
--md-sys-typescale-headline-small-line-height: 32px;
|
|
214
|
+
--md-sys-typescale-headline-small-letter-spacing: 0px;
|
|
215
|
+
/* body - large */
|
|
216
|
+
--md-sys-typescale-body-large-font-family-name: Roboto;
|
|
217
|
+
--md-sys-typescale-body-large-font-family-style: Regular;
|
|
218
|
+
--md-sys-typescale-body-large-font-weight: 400px;
|
|
219
|
+
--md-sys-typescale-body-large-font-size: 16px;
|
|
220
|
+
--md-sys-typescale-body-large-line-height: 24px;
|
|
221
|
+
--md-sys-typescale-body-large-letter-spacing: 0.50px;
|
|
222
|
+
/* body - medium */
|
|
223
|
+
--md-sys-typescale-body-medium-font-family-name: Roboto;
|
|
224
|
+
--md-sys-typescale-body-medium-font-family-style: Regular;
|
|
225
|
+
--md-sys-typescale-body-medium-font-weight: 400px;
|
|
226
|
+
--md-sys-typescale-body-medium-font-size: 14px;
|
|
227
|
+
--md-sys-typescale-body-medium-line-height: 20px;
|
|
228
|
+
--md-sys-typescale-body-medium-letter-spacing: 0.25px;
|
|
229
|
+
/* body - small */
|
|
230
|
+
--md-sys-typescale-body-small-font-family-name: Roboto;
|
|
231
|
+
--md-sys-typescale-body-small-font-family-style: Regular;
|
|
232
|
+
--md-sys-typescale-body-small-font-weight: 400px;
|
|
233
|
+
--md-sys-typescale-body-small-font-size: 12px;
|
|
234
|
+
--md-sys-typescale-body-small-line-height: 16px;
|
|
235
|
+
--md-sys-typescale-body-small-letter-spacing: 0.40px;
|
|
236
|
+
/* label - large */
|
|
237
|
+
--md-sys-typescale-label-large-font-family-name: Roboto;
|
|
238
|
+
--md-sys-typescale-label-large-font-family-style: Medium;
|
|
239
|
+
--md-sys-typescale-label-large-font-weight: 500px;
|
|
240
|
+
--md-sys-typescale-label-large-font-size: 14px;
|
|
241
|
+
--md-sys-typescale-label-large-line-height: 20px;
|
|
242
|
+
--md-sys-typescale-label-large-letter-spacing: 0.10px;
|
|
243
|
+
/* label - medium */
|
|
244
|
+
--md-sys-typescale-label-medium-font-family-name: Roboto;
|
|
245
|
+
--md-sys-typescale-label-medium-font-family-style: Medium;
|
|
246
|
+
--md-sys-typescale-label-medium-font-weight: 500px;
|
|
247
|
+
--md-sys-typescale-label-medium-font-size: 12px;
|
|
248
|
+
--md-sys-typescale-label-medium-line-height: 16px;
|
|
249
|
+
--md-sys-typescale-label-medium-letter-spacing: 0.50px;
|
|
250
|
+
/* label - small */
|
|
251
|
+
--md-sys-typescale-label-small-font-family-name: Roboto;
|
|
252
|
+
--md-sys-typescale-label-small-font-family-style: Medium;
|
|
253
|
+
--md-sys-typescale-label-small-font-weight: 500px;
|
|
254
|
+
--md-sys-typescale-label-small-font-size: 11px;
|
|
255
|
+
--md-sys-typescale-label-small-line-height: 16px;
|
|
256
|
+
--md-sys-typescale-label-small-letter-spacing: 0.50px;
|
|
257
|
+
/* title - large */
|
|
258
|
+
--md-sys-typescale-title-large-font-family-name: Roboto;
|
|
259
|
+
--md-sys-typescale-title-large-font-family-style: Regular;
|
|
260
|
+
--md-sys-typescale-title-large-font-weight: 400px;
|
|
261
|
+
--md-sys-typescale-title-large-font-size: 22px;
|
|
262
|
+
--md-sys-typescale-title-large-line-height: 28px;
|
|
263
|
+
--md-sys-typescale-title-large-letter-spacing: 0px;
|
|
264
|
+
/* title - medium */
|
|
265
|
+
--md-sys-typescale-title-medium-font-family-name: Roboto;
|
|
266
|
+
--md-sys-typescale-title-medium-font-family-style: Medium;
|
|
267
|
+
--md-sys-typescale-title-medium-font-weight: 500px;
|
|
268
|
+
--md-sys-typescale-title-medium-font-size: 16px;
|
|
269
|
+
--md-sys-typescale-title-medium-line-height: 24px;
|
|
270
|
+
--md-sys-typescale-title-medium-letter-spacing: 0.15px;
|
|
271
|
+
/* title - small */
|
|
272
|
+
--md-sys-typescale-title-small-font-family-name: Roboto;
|
|
273
|
+
--md-sys-typescale-title-small-font-family-style: Medium;
|
|
274
|
+
--md-sys-typescale-title-small-font-weight: 500px;
|
|
275
|
+
--md-sys-typescale-title-small-font-size: 14px;
|
|
276
|
+
--md-sys-typescale-title-small-line-height: 20px;
|
|
277
|
+
--md-sys-typescale-title-small-letter-spacing: 0.10px;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.primary {
|
|
281
|
+
background-color: var(--md-sys-color-primary);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.primary-text {
|
|
285
|
+
color: var(--md-sys-color-primary);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.on-primary {
|
|
289
|
+
background-color: var(--md-sys-color-on-primary);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.on-primary-text {
|
|
293
|
+
color: var(--md-sys-color-on-primary);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.primary-container {
|
|
297
|
+
background-color: var(--md-sys-color-primary-container);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.primary-container-text {
|
|
301
|
+
color: var(--md-sys-color-primary-container);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.on-primary-container {
|
|
305
|
+
background-color: var(--md-sys-color-on-primary-container);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.on-primary-container-text {
|
|
309
|
+
color: var(--md-sys-color-on-primary-container);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.secondary {
|
|
313
|
+
background-color: var(--md-sys-color-secondary);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.secondary-text {
|
|
317
|
+
color: var(--md-sys-color-secondary);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.on-secondary {
|
|
321
|
+
background-color: var(--md-sys-color-on-secondary);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.on-secondary-text {
|
|
325
|
+
color: var(--md-sys-color-on-secondary);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.secondary-container {
|
|
329
|
+
background-color: var(--md-sys-color-secondary-container);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.secondary-container-text {
|
|
333
|
+
color: var(--md-sys-color-secondary-container);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.on-secondary-container {
|
|
337
|
+
background-color: var(--md-sys-color-on-secondary-container);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.on-secondary-container-text {
|
|
341
|
+
color: var(--md-sys-color-on-secondary-container);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.tertiary {
|
|
345
|
+
background-color: var(--md-sys-color-tertiary);
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.tertiary-text {
|
|
349
|
+
color: var(--md-sys-color-tertiary);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.on-tertiary {
|
|
353
|
+
background-color: var(--md-sys-color-on-tertiary);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.on-tertiary-text {
|
|
357
|
+
color: var(--md-sys-color-on-tertiary);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.tertiary-container {
|
|
361
|
+
background-color: var(--md-sys-color-tertiary-container);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.tertiary-container-text {
|
|
365
|
+
color: var(--md-sys-color-tertiary-container);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.on-tertiary-container {
|
|
369
|
+
background-color: var(--md-sys-color-on-tertiary-container);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.on-tertiary-container-text {
|
|
373
|
+
color: var(--md-sys-color-on-tertiary-container);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.error {
|
|
377
|
+
background-color: var(--md-sys-color-error);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.error-text {
|
|
381
|
+
color: var(--md-sys-color-error);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.on-error {
|
|
385
|
+
background-color: var(--md-sys-color-on-error);
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.on-error-text {
|
|
389
|
+
color: var(--md-sys-color-on-error);
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.error-container {
|
|
393
|
+
background-color: var(--md-sys-color-error-container);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.error-container-text {
|
|
397
|
+
color: var(--md-sys-color-error-container);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.on-error-container {
|
|
401
|
+
background-color: var(--md-sys-color-on-error-container);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.on-error-container-text {
|
|
405
|
+
color: var(--md-sys-color-on-error-container);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.background {
|
|
409
|
+
background-color: var(--md-sys-color-background);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.background-text {
|
|
413
|
+
color: var(--md-sys-color-background);
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.on-background {
|
|
417
|
+
background-color: var(--md-sys-color-on-background);
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.on-background-text {
|
|
421
|
+
color: var(--md-sys-color-on-background);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.surface {
|
|
425
|
+
background-color: var(--md-sys-color-surface);
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.surface-text {
|
|
429
|
+
color: var(--md-sys-color-surface);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.on-surface {
|
|
433
|
+
background-color: var(--md-sys-color-on-surface);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.on-surface-text {
|
|
437
|
+
color: var(--md-sys-color-on-surface);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.surface-variant {
|
|
441
|
+
background-color: var(--md-sys-color-surface-variant);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.surface-variant-text {
|
|
445
|
+
color: var(--md-sys-color-surface-variant);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.on-surface-variant {
|
|
449
|
+
background-color: var(--md-sys-color-on-surface-variant);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.on-surface-variant-text {
|
|
453
|
+
color: var(--md-sys-color-on-surface-variant);
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.outline {
|
|
457
|
+
background-color: var(--md-sys-color-outline);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.outline-text {
|
|
461
|
+
color: var(--md-sys-color-outline);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.inverse-on-surface {
|
|
465
|
+
background-color: var(--md-sys-color-inverse-on-surface);
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.inverse-on-surface-text {
|
|
469
|
+
color: var(--md-sys-color-inverse-on-surface);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.inverse-surface {
|
|
473
|
+
background-color: var(--md-sys-color-inverse-surface);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.inverse-surface-text {
|
|
477
|
+
color: var(--md-sys-color-inverse-surface);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.inverse-primary {
|
|
481
|
+
background-color: var(--md-sys-color-inverse-primary);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.inverse-primary-text {
|
|
485
|
+
color: var(--md-sys-color-inverse-primary);
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.shadow {
|
|
489
|
+
background-color: var(--md-sys-color-shadow);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.shadow-text {
|
|
493
|
+
color: var(--md-sys-color-shadow);
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.surface-tint {
|
|
497
|
+
background-color: var(--md-sys-color-surface-tint);
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.surface-tint-text {
|
|
501
|
+
color: var(--md-sys-color-surface-tint);
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.outline-variant {
|
|
505
|
+
background-color: var(--md-sys-color-outline-variant);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.outline-variant-text {
|
|
509
|
+
color: var(--md-sys-color-outline-variant);
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.scrim {
|
|
513
|
+
background-color: var(--md-sys-color-scrim);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.scrim-text {
|
|
517
|
+
color: var(--md-sys-color-scrim);
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.display-large {
|
|
521
|
+
font-family: var(--md-sys-typescale-display-large-font-family-name);
|
|
522
|
+
font-style: var(--md-sys-typescale-display-large-font-family-style);
|
|
523
|
+
font-weight: var(--md-sys-typescale-display-large-font-weight);
|
|
524
|
+
font-size: var(--md-sys-typescale-display-large-font-size);
|
|
525
|
+
letter-spacing: var(--md-sys-typescale-display-large-tracking);
|
|
526
|
+
line-height: var(--md-sys-typescale-display-large-height);
|
|
527
|
+
text-transform: var(--md-sys-typescale-display-large-text-transform);
|
|
528
|
+
-webkit-text-decoration: var(--md-sys-typescale-display-large-text-decoration);
|
|
529
|
+
-moz-text-decoration: var(--md-sys-typescale-display-large-text-decoration);
|
|
530
|
+
text-decoration: var(--md-sys-typescale-display-large-text-decoration);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.display-medium {
|
|
534
|
+
font-family: var(--md-sys-typescale-display-medium-font-family-name);
|
|
535
|
+
font-style: var(--md-sys-typescale-display-medium-font-family-style);
|
|
536
|
+
font-weight: var(--md-sys-typescale-display-medium-font-weight);
|
|
537
|
+
font-size: var(--md-sys-typescale-display-medium-font-size);
|
|
538
|
+
letter-spacing: var(--md-sys-typescale-display-medium-tracking);
|
|
539
|
+
line-height: var(--md-sys-typescale-display-medium-height);
|
|
540
|
+
text-transform: var(--md-sys-typescale-display-medium-text-transform);
|
|
541
|
+
-webkit-text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
|
|
542
|
+
-moz-text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
|
|
543
|
+
text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.display-small {
|
|
547
|
+
font-family: var(--md-sys-typescale-display-small-font-family-name);
|
|
548
|
+
font-style: var(--md-sys-typescale-display-small-font-family-style);
|
|
549
|
+
font-weight: var(--md-sys-typescale-display-small-font-weight);
|
|
550
|
+
font-size: var(--md-sys-typescale-display-small-font-size);
|
|
551
|
+
letter-spacing: var(--md-sys-typescale-display-small-tracking);
|
|
552
|
+
line-height: var(--md-sys-typescale-display-small-height);
|
|
553
|
+
text-transform: var(--md-sys-typescale-display-small-text-transform);
|
|
554
|
+
-webkit-text-decoration: var(--md-sys-typescale-display-small-text-decoration);
|
|
555
|
+
-moz-text-decoration: var(--md-sys-typescale-display-small-text-decoration);
|
|
556
|
+
text-decoration: var(--md-sys-typescale-display-small-text-decoration);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.headline-large {
|
|
560
|
+
font-family: var(--md-sys-typescale-headline-large-font-family-name);
|
|
561
|
+
font-style: var(--md-sys-typescale-headline-large-font-family-style);
|
|
562
|
+
font-weight: var(--md-sys-typescale-headline-large-font-weight);
|
|
563
|
+
font-size: var(--md-sys-typescale-headline-large-font-size);
|
|
564
|
+
letter-spacing: var(--md-sys-typescale-headline-large-tracking);
|
|
565
|
+
line-height: var(--md-sys-typescale-headline-large-height);
|
|
566
|
+
text-transform: var(--md-sys-typescale-headline-large-text-transform);
|
|
567
|
+
-webkit-text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
|
|
568
|
+
-moz-text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
|
|
569
|
+
text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.headline-medium {
|
|
573
|
+
font-family: var(--md-sys-typescale-headline-medium-font-family-name);
|
|
574
|
+
font-style: var(--md-sys-typescale-headline-medium-font-family-style);
|
|
575
|
+
font-weight: var(--md-sys-typescale-headline-medium-font-weight);
|
|
576
|
+
font-size: var(--md-sys-typescale-headline-medium-font-size);
|
|
577
|
+
letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
|
|
578
|
+
line-height: var(--md-sys-typescale-headline-medium-height);
|
|
579
|
+
text-transform: var(--md-sys-typescale-headline-medium-text-transform);
|
|
580
|
+
-webkit-text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
|
|
581
|
+
-moz-text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
|
|
582
|
+
text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.headline-small {
|
|
586
|
+
font-family: var(--md-sys-typescale-headline-small-font-family-name);
|
|
587
|
+
font-style: var(--md-sys-typescale-headline-small-font-family-style);
|
|
588
|
+
font-weight: var(--md-sys-typescale-headline-small-font-weight);
|
|
589
|
+
font-size: var(--md-sys-typescale-headline-small-font-size);
|
|
590
|
+
letter-spacing: var(--md-sys-typescale-headline-small-tracking);
|
|
591
|
+
line-height: var(--md-sys-typescale-headline-small-height);
|
|
592
|
+
text-transform: var(--md-sys-typescale-headline-small-text-transform);
|
|
593
|
+
-webkit-text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
|
|
594
|
+
-moz-text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
|
|
595
|
+
text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.body-large {
|
|
599
|
+
font-family: var(--md-sys-typescale-body-large-font-family-name);
|
|
600
|
+
font-style: var(--md-sys-typescale-body-large-font-family-style);
|
|
601
|
+
font-weight: var(--md-sys-typescale-body-large-font-weight);
|
|
602
|
+
font-size: var(--md-sys-typescale-body-large-font-size);
|
|
603
|
+
letter-spacing: var(--md-sys-typescale-body-large-tracking);
|
|
604
|
+
line-height: var(--md-sys-typescale-body-large-height);
|
|
605
|
+
text-transform: var(--md-sys-typescale-body-large-text-transform);
|
|
606
|
+
-webkit-text-decoration: var(--md-sys-typescale-body-large-text-decoration);
|
|
607
|
+
-moz-text-decoration: var(--md-sys-typescale-body-large-text-decoration);
|
|
608
|
+
text-decoration: var(--md-sys-typescale-body-large-text-decoration);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.body-medium {
|
|
612
|
+
font-family: var(--md-sys-typescale-body-medium-font-family-name);
|
|
613
|
+
font-style: var(--md-sys-typescale-body-medium-font-family-style);
|
|
614
|
+
font-weight: var(--md-sys-typescale-body-medium-font-weight);
|
|
615
|
+
font-size: var(--md-sys-typescale-body-medium-font-size);
|
|
616
|
+
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
|
617
|
+
line-height: var(--md-sys-typescale-body-medium-height);
|
|
618
|
+
text-transform: var(--md-sys-typescale-body-medium-text-transform);
|
|
619
|
+
-webkit-text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
|
|
620
|
+
-moz-text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
|
|
621
|
+
text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.body-small {
|
|
625
|
+
font-family: var(--md-sys-typescale-body-small-font-family-name);
|
|
626
|
+
font-style: var(--md-sys-typescale-body-small-font-family-style);
|
|
627
|
+
font-weight: var(--md-sys-typescale-body-small-font-weight);
|
|
628
|
+
font-size: var(--md-sys-typescale-body-small-font-size);
|
|
629
|
+
letter-spacing: var(--md-sys-typescale-body-small-tracking);
|
|
630
|
+
line-height: var(--md-sys-typescale-body-small-height);
|
|
631
|
+
text-transform: var(--md-sys-typescale-body-small-text-transform);
|
|
632
|
+
-webkit-text-decoration: var(--md-sys-typescale-body-small-text-decoration);
|
|
633
|
+
-moz-text-decoration: var(--md-sys-typescale-body-small-text-decoration);
|
|
634
|
+
text-decoration: var(--md-sys-typescale-body-small-text-decoration);
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.label-large {
|
|
638
|
+
font-family: var(--md-sys-typescale-label-large-font-family-name);
|
|
639
|
+
font-style: var(--md-sys-typescale-label-large-font-family-style);
|
|
640
|
+
font-weight: var(--md-sys-typescale-label-large-font-weight);
|
|
641
|
+
font-size: var(--md-sys-typescale-label-large-font-size);
|
|
642
|
+
letter-spacing: var(--md-sys-typescale-label-large-tracking);
|
|
643
|
+
line-height: var(--md-sys-typescale-label-large-height);
|
|
644
|
+
text-transform: var(--md-sys-typescale-label-large-text-transform);
|
|
645
|
+
-webkit-text-decoration: var(--md-sys-typescale-label-large-text-decoration);
|
|
646
|
+
-moz-text-decoration: var(--md-sys-typescale-label-large-text-decoration);
|
|
647
|
+
text-decoration: var(--md-sys-typescale-label-large-text-decoration);
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.label-medium {
|
|
651
|
+
font-family: var(--md-sys-typescale-label-medium-font-family-name);
|
|
652
|
+
font-style: var(--md-sys-typescale-label-medium-font-family-style);
|
|
653
|
+
font-weight: var(--md-sys-typescale-label-medium-font-weight);
|
|
654
|
+
font-size: var(--md-sys-typescale-label-medium-font-size);
|
|
655
|
+
letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
|
656
|
+
line-height: var(--md-sys-typescale-label-medium-height);
|
|
657
|
+
text-transform: var(--md-sys-typescale-label-medium-text-transform);
|
|
658
|
+
-webkit-text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
|
|
659
|
+
-moz-text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
|
|
660
|
+
text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.label-small {
|
|
664
|
+
font-family: var(--md-sys-typescale-label-small-font-family-name);
|
|
665
|
+
font-style: var(--md-sys-typescale-label-small-font-family-style);
|
|
666
|
+
font-weight: var(--md-sys-typescale-label-small-font-weight);
|
|
667
|
+
font-size: var(--md-sys-typescale-label-small-font-size);
|
|
668
|
+
letter-spacing: var(--md-sys-typescale-label-small-tracking);
|
|
669
|
+
line-height: var(--md-sys-typescale-label-small-height);
|
|
670
|
+
text-transform: var(--md-sys-typescale-label-small-text-transform);
|
|
671
|
+
-webkit-text-decoration: var(--md-sys-typescale-label-small-text-decoration);
|
|
672
|
+
-moz-text-decoration: var(--md-sys-typescale-label-small-text-decoration);
|
|
673
|
+
text-decoration: var(--md-sys-typescale-label-small-text-decoration);
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.title-large {
|
|
677
|
+
font-family: var(--md-sys-typescale-title-large-font-family-name);
|
|
678
|
+
font-style: var(--md-sys-typescale-title-large-font-family-style);
|
|
679
|
+
font-weight: var(--md-sys-typescale-title-large-font-weight);
|
|
680
|
+
font-size: var(--md-sys-typescale-title-large-font-size);
|
|
681
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
682
|
+
line-height: var(--md-sys-typescale-title-large-height);
|
|
683
|
+
text-transform: var(--md-sys-typescale-title-large-text-transform);
|
|
684
|
+
-webkit-text-decoration: var(--md-sys-typescale-title-large-text-decoration);
|
|
685
|
+
-moz-text-decoration: var(--md-sys-typescale-title-large-text-decoration);
|
|
686
|
+
text-decoration: var(--md-sys-typescale-title-large-text-decoration);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.title-medium {
|
|
690
|
+
font-family: var(--md-sys-typescale-title-medium-font-family-name);
|
|
691
|
+
font-style: var(--md-sys-typescale-title-medium-font-family-style);
|
|
692
|
+
font-weight: var(--md-sys-typescale-title-medium-font-weight);
|
|
693
|
+
font-size: var(--md-sys-typescale-title-medium-font-size);
|
|
694
|
+
letter-spacing: var(--md-sys-typescale-title-medium-tracking);
|
|
695
|
+
line-height: var(--md-sys-typescale-title-medium-height);
|
|
696
|
+
text-transform: var(--md-sys-typescale-title-medium-text-transform);
|
|
697
|
+
-webkit-text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
|
|
698
|
+
-moz-text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
|
|
699
|
+
text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.title-small {
|
|
703
|
+
font-family: var(--md-sys-typescale-title-small-font-family-name);
|
|
704
|
+
font-style: var(--md-sys-typescale-title-small-font-family-style);
|
|
705
|
+
font-weight: var(--md-sys-typescale-title-small-font-weight);
|
|
706
|
+
font-size: var(--md-sys-typescale-title-small-font-size);
|
|
707
|
+
letter-spacing: var(--md-sys-typescale-title-small-tracking);
|
|
708
|
+
line-height: var(--md-sys-typescale-title-small-height);
|
|
709
|
+
text-transform: var(--md-sys-typescale-title-small-text-transform);
|
|
710
|
+
-webkit-text-decoration: var(--md-sys-typescale-title-small-text-decoration);
|
|
711
|
+
-moz-text-decoration: var(--md-sys-typescale-title-small-text-decoration);
|
|
712
|
+
text-decoration: var(--md-sys-typescale-title-small-text-decoration);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
:root {
|
|
716
|
+
--md-sys-color-primary: var(--md-sys-color-primary-light);
|
|
717
|
+
--md-sys-color-on-primary: var(--md-sys-color-on-primary-light);
|
|
718
|
+
--md-sys-color-primary-container: var(--md-sys-color-primary-container-light);
|
|
719
|
+
--md-sys-color-on-primary-container: var(--md-sys-color-on-primary-container-light);
|
|
720
|
+
--md-sys-color-secondary: var(--md-sys-color-secondary-light);
|
|
721
|
+
--md-sys-color-on-secondary: var(--md-sys-color-on-secondary-light);
|
|
722
|
+
--md-sys-color-secondary-container: var(--md-sys-color-secondary-container-light);
|
|
723
|
+
--md-sys-color-on-secondary-container: var(--md-sys-color-on-secondary-container-light);
|
|
724
|
+
--md-sys-color-tertiary: var(--md-sys-color-tertiary-light);
|
|
725
|
+
--md-sys-color-on-tertiary: var(--md-sys-color-on-tertiary-light);
|
|
726
|
+
--md-sys-color-tertiary-container: var(--md-sys-color-tertiary-container-light);
|
|
727
|
+
--md-sys-color-on-tertiary-container: var(--md-sys-color-on-tertiary-container-light);
|
|
728
|
+
--md-sys-color-error: var(--md-sys-color-error-light);
|
|
729
|
+
--md-sys-color-on-error: var(--md-sys-color-on-error-light);
|
|
730
|
+
--md-sys-color-error-container: var(--md-sys-color-error-container-light);
|
|
731
|
+
--md-sys-color-on-error-container: var(--md-sys-color-on-error-container-light);
|
|
732
|
+
--md-sys-color-outline: var(--md-sys-color-outline-light);
|
|
733
|
+
--md-sys-color-background: var(--md-sys-color-background-light);
|
|
734
|
+
--md-sys-color-on-background: var(--md-sys-color-on-background-light);
|
|
735
|
+
--md-sys-color-surface: var(--md-sys-color-surface-light);
|
|
736
|
+
--md-sys-color-on-surface: var(--md-sys-color-on-surface-light);
|
|
737
|
+
--md-sys-color-surface-variant: var(--md-sys-color-surface-variant-light);
|
|
738
|
+
--md-sys-color-on-surface-variant: var(--md-sys-color-on-surface-variant-light);
|
|
739
|
+
--md-sys-color-inverse-surface: var(--md-sys-color-inverse-surface-light);
|
|
740
|
+
--md-sys-color-inverse-on-surface: var(--md-sys-color-inverse-on-surface-light);
|
|
741
|
+
--md-sys-color-inverse-primary: var(--md-sys-color-inverse-primary-light);
|
|
742
|
+
--md-sys-color-shadow: var(--md-sys-color-shadow-light);
|
|
743
|
+
--md-sys-color-surface-tint: var(--md-sys-color-surface-tint-light);
|
|
744
|
+
--md-sys-color-outline-variant: var(--md-sys-color-outline-variant-light);
|
|
745
|
+
--md-sys-color-scrim: var(--md-sys-color-scrim-light);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
:root[theme=dark] {
|
|
749
|
+
--md-sys-color-primary: var(--md-sys-color-primary-dark);
|
|
750
|
+
--md-sys-color-on-primary: var(--md-sys-color-on-primary-dark);
|
|
751
|
+
--md-sys-color-primary-container: var(--md-sys-color-primary-container-dark);
|
|
752
|
+
--md-sys-color-on-primary-container: var(--md-sys-color-on-primary-container-dark);
|
|
753
|
+
--md-sys-color-secondary: var(--md-sys-color-secondary-dark);
|
|
754
|
+
--md-sys-color-on-secondary: var(--md-sys-color-on-secondary-dark);
|
|
755
|
+
--md-sys-color-secondary-container: var(--md-sys-color-secondary-container-dark);
|
|
756
|
+
--md-sys-color-on-secondary-container: var(--md-sys-color-on-secondary-container-dark);
|
|
757
|
+
--md-sys-color-tertiary: var(--md-sys-color-tertiary-dark);
|
|
758
|
+
--md-sys-color-on-tertiary: var(--md-sys-color-on-tertiary-dark);
|
|
759
|
+
--md-sys-color-tertiary-container: var(--md-sys-color-tertiary-container-dark);
|
|
760
|
+
--md-sys-color-on-tertiary-container: var(--md-sys-color-on-tertiary-container-dark);
|
|
761
|
+
--md-sys-color-error: var(--md-sys-color-error-dark);
|
|
762
|
+
--md-sys-color-on-error: var(--md-sys-color-on-error-dark);
|
|
763
|
+
--md-sys-color-error-container: var(--md-sys-color-error-container-dark);
|
|
764
|
+
--md-sys-color-on-error-container: var(--md-sys-color-on-error-container-dark);
|
|
765
|
+
--md-sys-color-outline: var(--md-sys-color-outline-dark);
|
|
766
|
+
--md-sys-color-background: var(--md-sys-color-background-dark);
|
|
767
|
+
--md-sys-color-on-background: var(--md-sys-color-on-background-dark);
|
|
768
|
+
--md-sys-color-surface: var(--md-sys-color-surface-dark);
|
|
769
|
+
--md-sys-color-on-surface: var(--md-sys-color-on-surface-dark);
|
|
770
|
+
--md-sys-color-surface-variant: var(--md-sys-color-surface-variant-dark);
|
|
771
|
+
--md-sys-color-on-surface-variant: var(--md-sys-color-on-surface-variant-dark);
|
|
772
|
+
--md-sys-color-inverse-surface: var(--md-sys-color-inverse-surface-dark);
|
|
773
|
+
--md-sys-color-inverse-on-surface: var(--md-sys-color-inverse-on-surface-dark);
|
|
774
|
+
--md-sys-color-inverse-primary: var(--md-sys-color-inverse-primary-dark);
|
|
775
|
+
--md-sys-color-shadow: var(--md-sys-color-shadow-dark);
|
|
776
|
+
--md-sys-color-surface-tint: var(--md-sys-color-surface-tint-dark);
|
|
777
|
+
--md-sys-color-outline-variant: var(--md-sys-color-outline-variant-dark);
|
|
778
|
+
--md-sys-color-scrim: var(--md-sys-color-scrim-dark);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
:root, :host {
|
|
782
|
+
--surface-color: var(--md-sys-color-surface);
|
|
783
|
+
--background-color: var(--md-sys-color-background);
|
|
784
|
+
--font-color-main: var(--md-sys-color-on-background);
|
|
785
|
+
--font-color-medium: var(--md-sys-color-on-surface-variant);
|
|
786
|
+
--font-color-disabled: var(--md-sys-color-on-surface);
|
|
787
|
+
--font-on-primary-color-main: var(--md-sys-color-on-primary);
|
|
788
|
+
--font-on-primary-color-dark-main: var(--md-sys-color-on-primary-dark);
|
|
789
|
+
--font-on-primary-color-dark-medium: var(--md-sys-color-on-surface-variant-dark);
|
|
790
|
+
--font-on-primary-color-medium: var(--md-sys-color-on-surface-variant);
|
|
791
|
+
--font-on-primary-color-disabled: rgba(255, 255, 255, 0.38);
|
|
792
|
+
--font-on-secondary-color-main: var(--md-sys-color-on-secondary);
|
|
793
|
+
--hover-color: rgba(0, 0, 0, 0.04);
|
|
794
|
+
--focus-color: rgba(0, 0, 0, 0.12);
|
|
795
|
+
--focus-color-solid: #E0E0E0;
|
|
796
|
+
--background-color-disabled: rgba(0, 0, 0, 0.12);
|
|
797
|
+
--background-color-level-4dp: rgba(0, 0, 0, 0.09);
|
|
798
|
+
--background-color-level-16dp-solid: var(--surface-color);
|
|
799
|
+
--background-color-slight-emphasis: rgba(0, 0, 0, 0.08);
|
|
800
|
+
--background-color-card: var(--surface-color);
|
|
801
|
+
--tooltip-background-color: #313033;
|
|
802
|
+
--tooltip-font-color: rgba(255, 255, 255, 0.77);
|
|
803
|
+
--separator-color: #DDDDDD; /* borders between components */
|
|
804
|
+
--error-color: #F44336;
|
|
805
|
+
--slider-track-color: var(--md-sys-color-shadow-light);
|
|
806
|
+
--switch-thumb-off-color: var(--md-ref-palette-primary100);
|
|
807
|
+
--carousel-indicator-color: rgba(255, 255, 255, 0.45);
|
|
808
|
+
--carousel-indicator-active-color: var(--md-ref-palette-primary100);
|
|
809
|
+
--primary-color: var(--md-sys-color-primary);
|
|
810
|
+
--primary-color-dark: var(--md-sys-color-primary-dark);
|
|
811
|
+
--primary-color-raised-hover-solid: var(--md-ref-palette-primary70);
|
|
812
|
+
--primary-color-raised-focus-solid: var(--md-ref-palette-primary80);
|
|
813
|
+
--primary-color-font-medium-color: rgba(var(--primary-color-numeric), 0.7);
|
|
814
|
+
--primary-color-font-disabled-color: rgba(var(--primary-color-numeric), 0.4);
|
|
815
|
+
--primary-color-hover-opaque: rgba(var(--primary-color-numeric), 0.06);
|
|
816
|
+
--primary-color-focus-opaque: rgba(var(--primary-color-numeric), 0.18);
|
|
817
|
+
--secondary-color: var(--md-sys-color-secondary);
|
|
818
|
+
--secondary-color-hover-solid: var(--md-ref-palette-secondary70);
|
|
819
|
+
--secondary-color-focus-solid: var(--md-ref-palette-secondary80);
|
|
820
|
+
--secondary-container-color: var(--md-sys-color-secondary-container);
|
|
821
|
+
--font-on-secondary-container-color: var(--md-sys-color-on-secondary-container);
|
|
822
|
+
--md_sys_color_on-surface: 28, 27, 31;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
:root[theme=dark] {
|
|
826
|
+
--font-on-primary-color-disabled: rgba(0, 0, 0, 0.38);
|
|
827
|
+
--hover-color: rgba(255, 255, 255, 0.04);
|
|
828
|
+
--focus-color: rgba(255, 255, 255, 0.12);
|
|
829
|
+
--focus-color-solid: #424242;
|
|
830
|
+
--background-color-disabled: rgba(255, 255, 255, 0.12);
|
|
831
|
+
--background-color-level-4dp: rgba(255, 255, 255, 0.09);
|
|
832
|
+
--background-color-slight-emphasis: rgba(255, 255, 255, 0.05);
|
|
833
|
+
--separator-color: #424242; /* borders between components */
|
|
834
|
+
--error-color: #CF6679;
|
|
835
|
+
--switch-thumb-off-color: #bababa;
|
|
836
|
+
--md_sys_color_on-surface: 230, 225, 229;
|
|
837
|
+
}
|
|
838
|
+
|
|
7
839
|
.materialize-red {
|
|
8
840
|
background-color: #e51c23 !important;
|
|
9
841
|
}
|
|
@@ -2642,7 +3474,8 @@ video.responsive-video {
|
|
|
2642
3474
|
}
|
|
2643
3475
|
.breadcrumb i,
|
|
2644
3476
|
.breadcrumb [class^=mdi-], .breadcrumb [class*=mdi-],
|
|
2645
|
-
.breadcrumb i.material-icons
|
|
3477
|
+
.breadcrumb i.material-icons, .breadcrumb i.material-symbols-outlined,
|
|
3478
|
+
.breadcrumb i.material-symbols-rounded, .breadcrumb i.material-symbols-sharp {
|
|
2646
3479
|
display: block;
|
|
2647
3480
|
float: left;
|
|
2648
3481
|
font-size: 24px;
|
|
@@ -2652,7 +3485,7 @@ video.responsive-video {
|
|
|
2652
3485
|
color: var(--font-on-primary-color-medium);
|
|
2653
3486
|
vertical-align: top;
|
|
2654
3487
|
display: inline-block;
|
|
2655
|
-
font-family: "Material Icons";
|
|
3488
|
+
font-family: "Material Symbols Outlined", "Material Symbols Rounded", "Material Symbols Sharp", "Material Icons";
|
|
2656
3489
|
font-weight: normal;
|
|
2657
3490
|
font-style: normal;
|
|
2658
3491
|
font-size: 25px;
|
|
@@ -2824,6 +3657,11 @@ ul.staggered-list li {
|
|
|
2824
3657
|
background-color: var(--primary-color-dark);
|
|
2825
3658
|
}
|
|
2826
3659
|
|
|
3660
|
+
.page-footer ul {
|
|
3661
|
+
padding-left: 0;
|
|
3662
|
+
list-style-type: none;
|
|
3663
|
+
}
|
|
3664
|
+
|
|
2827
3665
|
table, th, td {
|
|
2828
3666
|
border: none;
|
|
2829
3667
|
}
|
|
@@ -2973,131 +3811,614 @@ table.responsive-table td {
|
|
|
2973
3811
|
-webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
|
|
2974
3812
|
animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
|
|
2975
3813
|
}
|
|
2976
|
-
.progress .indeterminate:after {
|
|
2977
|
-
content: "";
|
|
2978
|
-
position: absolute;
|
|
2979
|
-
background-color: inherit;
|
|
2980
|
-
top: 0;
|
|
2981
|
-
left: 0;
|
|
2982
|
-
bottom: 0;
|
|
2983
|
-
will-change: left, right;
|
|
2984
|
-
-webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
|
|
2985
|
-
animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
|
|
2986
|
-
-webkit-animation-delay: 1.15s;
|
|
2987
|
-
animation-delay: 1.15s;
|
|
3814
|
+
.progress .indeterminate:after {
|
|
3815
|
+
content: "";
|
|
3816
|
+
position: absolute;
|
|
3817
|
+
background-color: inherit;
|
|
3818
|
+
top: 0;
|
|
3819
|
+
left: 0;
|
|
3820
|
+
bottom: 0;
|
|
3821
|
+
will-change: left, right;
|
|
3822
|
+
-webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
|
|
3823
|
+
animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
|
|
3824
|
+
-webkit-animation-delay: 1.15s;
|
|
3825
|
+
animation-delay: 1.15s;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
@-webkit-keyframes indeterminate {
|
|
3829
|
+
0% {
|
|
3830
|
+
left: -35%;
|
|
3831
|
+
right: 100%;
|
|
3832
|
+
}
|
|
3833
|
+
60% {
|
|
3834
|
+
left: 100%;
|
|
3835
|
+
right: -90%;
|
|
3836
|
+
}
|
|
3837
|
+
100% {
|
|
3838
|
+
left: 100%;
|
|
3839
|
+
right: -90%;
|
|
3840
|
+
}
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
@keyframes indeterminate {
|
|
3844
|
+
0% {
|
|
3845
|
+
left: -35%;
|
|
3846
|
+
right: 100%;
|
|
3847
|
+
}
|
|
3848
|
+
60% {
|
|
3849
|
+
left: 100%;
|
|
3850
|
+
right: -90%;
|
|
3851
|
+
}
|
|
3852
|
+
100% {
|
|
3853
|
+
left: 100%;
|
|
3854
|
+
right: -90%;
|
|
3855
|
+
}
|
|
3856
|
+
}
|
|
3857
|
+
@-webkit-keyframes indeterminate-short {
|
|
3858
|
+
0% {
|
|
3859
|
+
left: -200%;
|
|
3860
|
+
right: 100%;
|
|
3861
|
+
}
|
|
3862
|
+
60% {
|
|
3863
|
+
left: 107%;
|
|
3864
|
+
right: -8%;
|
|
3865
|
+
}
|
|
3866
|
+
100% {
|
|
3867
|
+
left: 107%;
|
|
3868
|
+
right: -8%;
|
|
3869
|
+
}
|
|
3870
|
+
}
|
|
3871
|
+
@keyframes indeterminate-short {
|
|
3872
|
+
0% {
|
|
3873
|
+
left: -200%;
|
|
3874
|
+
right: 100%;
|
|
3875
|
+
}
|
|
3876
|
+
60% {
|
|
3877
|
+
left: 107%;
|
|
3878
|
+
right: -8%;
|
|
3879
|
+
}
|
|
3880
|
+
100% {
|
|
3881
|
+
left: 107%;
|
|
3882
|
+
right: -8%;
|
|
3883
|
+
}
|
|
3884
|
+
}
|
|
3885
|
+
/*******************
|
|
3886
|
+
Utility Classes
|
|
3887
|
+
*******************/
|
|
3888
|
+
.hide {
|
|
3889
|
+
display: none !important;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
.left-align {
|
|
3893
|
+
text-align: left;
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
.right-align {
|
|
3897
|
+
text-align: right;
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
.center, .center-align {
|
|
3901
|
+
text-align: center;
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
.left {
|
|
3905
|
+
float: left !important;
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
.right {
|
|
3909
|
+
float: right !important;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
.no-select, input[type=range],
|
|
3913
|
+
input[type=range] + .thumb {
|
|
3914
|
+
-webkit-user-select: none;
|
|
3915
|
+
-moz-user-select: none;
|
|
3916
|
+
-ms-user-select: none;
|
|
3917
|
+
user-select: none;
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
.circle {
|
|
3921
|
+
border-radius: 50%;
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
.center-block {
|
|
3925
|
+
display: block;
|
|
3926
|
+
margin-left: auto;
|
|
3927
|
+
margin-right: auto;
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.truncate {
|
|
3931
|
+
display: block;
|
|
3932
|
+
white-space: nowrap;
|
|
3933
|
+
overflow: hidden;
|
|
3934
|
+
text-overflow: ellipsis;
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
.no-padding {
|
|
3938
|
+
padding: 0 !important;
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
/**************************
|
|
3942
|
+
Utility Spacing Classes
|
|
3943
|
+
**************************/
|
|
3944
|
+
.m-0 {
|
|
3945
|
+
margin: 0 !important;
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3948
|
+
.mt-0 {
|
|
3949
|
+
margin-top: 0 !important;
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
.mr-0 {
|
|
3953
|
+
margin-right: 0 !important;
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
.mb-0 {
|
|
3957
|
+
margin-bottom: 0 !important;
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
.ml-0 {
|
|
3961
|
+
margin-left: 0 !important;
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
.mx-0 {
|
|
3965
|
+
margin-left: 0 !important;
|
|
3966
|
+
margin-right: 0 !important;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
.my-0 {
|
|
3970
|
+
margin-top: 0 !important;
|
|
3971
|
+
margin-bottom: 0 !important;
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
.m-1 {
|
|
3975
|
+
margin: 0.25rem !important;
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
.mt-1 {
|
|
3979
|
+
margin-top: 0.25rem !important;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
.mr-1 {
|
|
3983
|
+
margin-right: 0.25rem !important;
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
.mb-1 {
|
|
3987
|
+
margin-bottom: 0.25rem !important;
|
|
3988
|
+
}
|
|
3989
|
+
|
|
3990
|
+
.ml-1 {
|
|
3991
|
+
margin-left: 0.25rem !important;
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
.mx-1 {
|
|
3995
|
+
margin-left: 0.25rem !important;
|
|
3996
|
+
margin-right: 0.25rem !important;
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
.my-1 {
|
|
4000
|
+
margin-top: 0.25rem !important;
|
|
4001
|
+
margin-bottom: 0.25rem !important;
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
.m-2 {
|
|
4005
|
+
margin: 0.5rem !important;
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
.mt-2 {
|
|
4009
|
+
margin-top: 0.5rem !important;
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
.mr-2 {
|
|
4013
|
+
margin-right: 0.5rem !important;
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
.mb-2 {
|
|
4017
|
+
margin-bottom: 0.5rem !important;
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.ml-2 {
|
|
4021
|
+
margin-left: 0.5rem !important;
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
.mx-2 {
|
|
4025
|
+
margin-left: 0.5rem !important;
|
|
4026
|
+
margin-right: 0.5rem !important;
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
.my-2 {
|
|
4030
|
+
margin-top: 0.5rem !important;
|
|
4031
|
+
margin-bottom: 0.5rem !important;
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
.m-3 {
|
|
4035
|
+
margin: 0.75rem !important;
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
.mt-3 {
|
|
4039
|
+
margin-top: 0.75rem !important;
|
|
4040
|
+
}
|
|
4041
|
+
|
|
4042
|
+
.mr-3 {
|
|
4043
|
+
margin-right: 0.75rem !important;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
.mb-3 {
|
|
4047
|
+
margin-bottom: 0.75rem !important;
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
.ml-3 {
|
|
4051
|
+
margin-left: 0.75rem !important;
|
|
4052
|
+
}
|
|
4053
|
+
|
|
4054
|
+
.mx-3 {
|
|
4055
|
+
margin-left: 0.75rem !important;
|
|
4056
|
+
margin-right: 0.75rem !important;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
.my-3 {
|
|
4060
|
+
margin-top: 0.75rem !important;
|
|
4061
|
+
margin-bottom: 0.75rem !important;
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
.m-4 {
|
|
4065
|
+
margin: 1rem !important;
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4068
|
+
.mt-4 {
|
|
4069
|
+
margin-top: 1rem !important;
|
|
4070
|
+
}
|
|
4071
|
+
|
|
4072
|
+
.mr-4 {
|
|
4073
|
+
margin-right: 1rem !important;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.mb-4 {
|
|
4077
|
+
margin-bottom: 1rem !important;
|
|
4078
|
+
}
|
|
4079
|
+
|
|
4080
|
+
.ml-4 {
|
|
4081
|
+
margin-left: 1rem !important;
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
.mx-4 {
|
|
4085
|
+
margin-left: 1rem !important;
|
|
4086
|
+
margin-right: 1rem !important;
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4089
|
+
.my-4 {
|
|
4090
|
+
margin-top: 1rem !important;
|
|
4091
|
+
margin-bottom: 1rem !important;
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
.m-5 {
|
|
4095
|
+
margin: 1.5rem !important;
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
.mt-5 {
|
|
4099
|
+
margin-top: 1.5rem !important;
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4102
|
+
.mr-5 {
|
|
4103
|
+
margin-right: 1.5rem !important;
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
.mb-5 {
|
|
4107
|
+
margin-bottom: 1.5rem !important;
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
.ml-5 {
|
|
4111
|
+
margin-left: 1.5rem !important;
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.mx-5 {
|
|
4115
|
+
margin-left: 1.5rem !important;
|
|
4116
|
+
margin-right: 1.5rem !important;
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
.my-5 {
|
|
4120
|
+
margin-top: 1.5rem !important;
|
|
4121
|
+
margin-bottom: 1.5rem !important;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.m-6 {
|
|
4125
|
+
margin: 3rem !important;
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
.mt-6 {
|
|
4129
|
+
margin-top: 3rem !important;
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
.mr-6 {
|
|
4133
|
+
margin-right: 3rem !important;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
.mb-6 {
|
|
4137
|
+
margin-bottom: 3rem !important;
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.ml-6 {
|
|
4141
|
+
margin-left: 3rem !important;
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
.mx-6 {
|
|
4145
|
+
margin-left: 3rem !important;
|
|
4146
|
+
margin-right: 3rem !important;
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4149
|
+
.my-6 {
|
|
4150
|
+
margin-top: 3rem !important;
|
|
4151
|
+
margin-bottom: 3rem !important;
|
|
4152
|
+
}
|
|
4153
|
+
|
|
4154
|
+
.m-auto {
|
|
4155
|
+
margin: auto !important;
|
|
4156
|
+
}
|
|
4157
|
+
|
|
4158
|
+
.mt-auto {
|
|
4159
|
+
margin-top: auto !important;
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
.mr-auto {
|
|
4163
|
+
margin-right: auto !important;
|
|
4164
|
+
}
|
|
4165
|
+
|
|
4166
|
+
.mb-auto {
|
|
4167
|
+
margin-bottom: auto !important;
|
|
4168
|
+
}
|
|
4169
|
+
|
|
4170
|
+
.ml-auto {
|
|
4171
|
+
margin-left: auto !important;
|
|
4172
|
+
}
|
|
4173
|
+
|
|
4174
|
+
.mx-auto {
|
|
4175
|
+
margin-left: auto !important;
|
|
4176
|
+
margin-right: auto !important;
|
|
4177
|
+
}
|
|
4178
|
+
|
|
4179
|
+
.my-auto {
|
|
4180
|
+
margin-top: auto !important;
|
|
4181
|
+
margin-bottom: auto !important;
|
|
4182
|
+
}
|
|
4183
|
+
|
|
4184
|
+
.p-0 {
|
|
4185
|
+
padding: 0 !important;
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4188
|
+
.pt-0 {
|
|
4189
|
+
padding-top: 0 !important;
|
|
4190
|
+
}
|
|
4191
|
+
|
|
4192
|
+
.pr-0 {
|
|
4193
|
+
padding-right: 0 !important;
|
|
4194
|
+
}
|
|
4195
|
+
|
|
4196
|
+
.pb-0 {
|
|
4197
|
+
padding-bottom: 0 !important;
|
|
4198
|
+
}
|
|
4199
|
+
|
|
4200
|
+
.pl-0 {
|
|
4201
|
+
padding-left: 0 !important;
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
.px-0 {
|
|
4205
|
+
padding-left: 0 !important;
|
|
4206
|
+
padding-right: 0 !important;
|
|
4207
|
+
}
|
|
4208
|
+
|
|
4209
|
+
.py-0 {
|
|
4210
|
+
padding-top: 0 !important;
|
|
4211
|
+
padding-bottom: 0 !important;
|
|
4212
|
+
}
|
|
4213
|
+
|
|
4214
|
+
.p-1 {
|
|
4215
|
+
padding: 0.25rem !important;
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4218
|
+
.pt-1 {
|
|
4219
|
+
padding-top: 0.25rem !important;
|
|
4220
|
+
}
|
|
4221
|
+
|
|
4222
|
+
.pr-1 {
|
|
4223
|
+
padding-right: 0.25rem !important;
|
|
4224
|
+
}
|
|
4225
|
+
|
|
4226
|
+
.pb-1 {
|
|
4227
|
+
padding-bottom: 0.25rem !important;
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
.pl-1 {
|
|
4231
|
+
padding-left: 0.25rem !important;
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
.px-1 {
|
|
4235
|
+
padding-left: 0.25rem !important;
|
|
4236
|
+
padding-right: 0.25rem !important;
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
.py-1 {
|
|
4240
|
+
padding-top: 0.25rem !important;
|
|
4241
|
+
padding-bottom: 0.25rem !important;
|
|
4242
|
+
}
|
|
4243
|
+
|
|
4244
|
+
.p-2 {
|
|
4245
|
+
padding: 0.5rem !important;
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
.pt-2 {
|
|
4249
|
+
padding-top: 0.5rem !important;
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4252
|
+
.pr-2 {
|
|
4253
|
+
padding-right: 0.5rem !important;
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
.pb-2 {
|
|
4257
|
+
padding-bottom: 0.5rem !important;
|
|
4258
|
+
}
|
|
4259
|
+
|
|
4260
|
+
.pl-2 {
|
|
4261
|
+
padding-left: 0.5rem !important;
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
.px-2 {
|
|
4265
|
+
padding-left: 0.5rem !important;
|
|
4266
|
+
padding-right: 0.5rem !important;
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
.py-2 {
|
|
4270
|
+
padding-top: 0.5rem !important;
|
|
4271
|
+
padding-bottom: 0.5rem !important;
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
.p-3 {
|
|
4275
|
+
padding: 0.75rem !important;
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4278
|
+
.pt-3 {
|
|
4279
|
+
padding-top: 0.75rem !important;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.pr-3 {
|
|
4283
|
+
padding-right: 0.75rem !important;
|
|
4284
|
+
}
|
|
4285
|
+
|
|
4286
|
+
.pb-3 {
|
|
4287
|
+
padding-bottom: 0.75rem !important;
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
.pl-3 {
|
|
4291
|
+
padding-left: 0.75rem !important;
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
.px-3 {
|
|
4295
|
+
padding-left: 0.75rem !important;
|
|
4296
|
+
padding-right: 0.75rem !important;
|
|
4297
|
+
}
|
|
4298
|
+
|
|
4299
|
+
.py-3 {
|
|
4300
|
+
padding-top: 0.75rem !important;
|
|
4301
|
+
padding-bottom: 0.75rem !important;
|
|
4302
|
+
}
|
|
4303
|
+
|
|
4304
|
+
.p-4 {
|
|
4305
|
+
padding: 1rem !important;
|
|
4306
|
+
}
|
|
4307
|
+
|
|
4308
|
+
.pt-4 {
|
|
4309
|
+
padding-top: 1rem !important;
|
|
4310
|
+
}
|
|
4311
|
+
|
|
4312
|
+
.pr-4 {
|
|
4313
|
+
padding-right: 1rem !important;
|
|
4314
|
+
}
|
|
4315
|
+
|
|
4316
|
+
.pb-4 {
|
|
4317
|
+
padding-bottom: 1rem !important;
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
.pl-4 {
|
|
4321
|
+
padding-left: 1rem !important;
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4324
|
+
.px-4 {
|
|
4325
|
+
padding-left: 1rem !important;
|
|
4326
|
+
padding-right: 1rem !important;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
.py-4 {
|
|
4330
|
+
padding-top: 1rem !important;
|
|
4331
|
+
padding-bottom: 1rem !important;
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4334
|
+
.p-5 {
|
|
4335
|
+
padding: 1.5rem !important;
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
.pt-5 {
|
|
4339
|
+
padding-top: 1.5rem !important;
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
.pr-5 {
|
|
4343
|
+
padding-right: 1.5rem !important;
|
|
2988
4344
|
}
|
|
2989
4345
|
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
left: -35%;
|
|
2993
|
-
right: 100%;
|
|
2994
|
-
}
|
|
2995
|
-
60% {
|
|
2996
|
-
left: 100%;
|
|
2997
|
-
right: -90%;
|
|
2998
|
-
}
|
|
2999
|
-
100% {
|
|
3000
|
-
left: 100%;
|
|
3001
|
-
right: -90%;
|
|
3002
|
-
}
|
|
4346
|
+
.pb-5 {
|
|
4347
|
+
padding-bottom: 1.5rem !important;
|
|
3003
4348
|
}
|
|
3004
4349
|
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
left: -35%;
|
|
3008
|
-
right: 100%;
|
|
3009
|
-
}
|
|
3010
|
-
60% {
|
|
3011
|
-
left: 100%;
|
|
3012
|
-
right: -90%;
|
|
3013
|
-
}
|
|
3014
|
-
100% {
|
|
3015
|
-
left: 100%;
|
|
3016
|
-
right: -90%;
|
|
3017
|
-
}
|
|
4350
|
+
.pl-5 {
|
|
4351
|
+
padding-left: 1.5rem !important;
|
|
3018
4352
|
}
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
}
|
|
3024
|
-
60% {
|
|
3025
|
-
left: 107%;
|
|
3026
|
-
right: -8%;
|
|
3027
|
-
}
|
|
3028
|
-
100% {
|
|
3029
|
-
left: 107%;
|
|
3030
|
-
right: -8%;
|
|
3031
|
-
}
|
|
4353
|
+
|
|
4354
|
+
.px-5 {
|
|
4355
|
+
padding-left: 1.5rem !important;
|
|
4356
|
+
padding-right: 1.5rem !important;
|
|
3032
4357
|
}
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
}
|
|
3038
|
-
60% {
|
|
3039
|
-
left: 107%;
|
|
3040
|
-
right: -8%;
|
|
3041
|
-
}
|
|
3042
|
-
100% {
|
|
3043
|
-
left: 107%;
|
|
3044
|
-
right: -8%;
|
|
3045
|
-
}
|
|
4358
|
+
|
|
4359
|
+
.py-5 {
|
|
4360
|
+
padding-top: 1.5rem !important;
|
|
4361
|
+
padding-bottom: 1.5rem !important;
|
|
3046
4362
|
}
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
.hide {
|
|
3051
|
-
display: none !important;
|
|
4363
|
+
|
|
4364
|
+
.p-6 {
|
|
4365
|
+
padding: 3rem !important;
|
|
3052
4366
|
}
|
|
3053
4367
|
|
|
3054
|
-
.
|
|
3055
|
-
|
|
4368
|
+
.pt-6 {
|
|
4369
|
+
padding-top: 3rem !important;
|
|
3056
4370
|
}
|
|
3057
4371
|
|
|
3058
|
-
.
|
|
3059
|
-
|
|
4372
|
+
.pr-6 {
|
|
4373
|
+
padding-right: 3rem !important;
|
|
3060
4374
|
}
|
|
3061
4375
|
|
|
3062
|
-
.
|
|
3063
|
-
|
|
4376
|
+
.pb-6 {
|
|
4377
|
+
padding-bottom: 3rem !important;
|
|
3064
4378
|
}
|
|
3065
4379
|
|
|
3066
|
-
.
|
|
3067
|
-
|
|
4380
|
+
.pl-6 {
|
|
4381
|
+
padding-left: 3rem !important;
|
|
3068
4382
|
}
|
|
3069
4383
|
|
|
3070
|
-
.
|
|
3071
|
-
|
|
4384
|
+
.px-6 {
|
|
4385
|
+
padding-left: 3rem !important;
|
|
4386
|
+
padding-right: 3rem !important;
|
|
3072
4387
|
}
|
|
3073
4388
|
|
|
3074
|
-
.
|
|
3075
|
-
|
|
3076
|
-
-
|
|
3077
|
-
-moz-user-select: none;
|
|
3078
|
-
-ms-user-select: none;
|
|
3079
|
-
user-select: none;
|
|
4389
|
+
.py-6 {
|
|
4390
|
+
padding-top: 3rem !important;
|
|
4391
|
+
padding-bottom: 3rem !important;
|
|
3080
4392
|
}
|
|
3081
4393
|
|
|
3082
|
-
.
|
|
3083
|
-
|
|
4394
|
+
.p-auto {
|
|
4395
|
+
padding: auto !important;
|
|
3084
4396
|
}
|
|
3085
4397
|
|
|
3086
|
-
.
|
|
3087
|
-
|
|
3088
|
-
margin-left: auto;
|
|
3089
|
-
margin-right: auto;
|
|
4398
|
+
.pt-auto {
|
|
4399
|
+
padding-top: auto !important;
|
|
3090
4400
|
}
|
|
3091
4401
|
|
|
3092
|
-
.
|
|
3093
|
-
|
|
3094
|
-
white-space: nowrap;
|
|
3095
|
-
overflow: hidden;
|
|
3096
|
-
text-overflow: ellipsis;
|
|
4402
|
+
.pr-auto {
|
|
4403
|
+
padding-right: auto !important;
|
|
3097
4404
|
}
|
|
3098
4405
|
|
|
3099
|
-
.
|
|
3100
|
-
padding:
|
|
4406
|
+
.pb-auto {
|
|
4407
|
+
padding-bottom: auto !important;
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4410
|
+
.pl-auto {
|
|
4411
|
+
padding-left: auto !important;
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
.px-auto {
|
|
4415
|
+
padding-left: auto !important;
|
|
4416
|
+
padding-right: auto !important;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.py-auto {
|
|
4420
|
+
padding-top: auto !important;
|
|
4421
|
+
padding-bottom: auto !important;
|
|
3101
4422
|
}
|
|
3102
4423
|
|
|
3103
4424
|
.collection {
|
|
@@ -3253,7 +4574,8 @@ table span.badge {
|
|
|
3253
4574
|
}
|
|
3254
4575
|
|
|
3255
4576
|
/* This is needed for some mobile phones to display the Google Icon font properly */
|
|
3256
|
-
.material-icons
|
|
4577
|
+
.material-icons, .material-symbols-outlined,
|
|
4578
|
+
.material-symbols-rounded, .material-symbols-sharp {
|
|
3257
4579
|
text-rendering: optimizeLegibility;
|
|
3258
4580
|
-webkit-font-feature-settings: "liga";
|
|
3259
4581
|
-moz-font-feature-settings: "liga";
|
|
@@ -3276,26 +4598,8 @@ table span.badge {
|
|
|
3276
4598
|
width: 70%;
|
|
3277
4599
|
}
|
|
3278
4600
|
}
|
|
3279
|
-
/*
|
|
3280
|
-
.col .row {
|
|
3281
|
-
margin-left: (-1 * $gutter-width * 0.5);
|
|
3282
|
-
margin-right: (-1 * $gutter-width * 0.5);
|
|
3283
|
-
}
|
|
3284
|
-
*/
|
|
3285
4601
|
.section {
|
|
3286
|
-
padding
|
|
3287
|
-
padding-bottom: 1rem;
|
|
3288
|
-
/*
|
|
3289
|
-
&.no-pad {
|
|
3290
|
-
padding: 0;
|
|
3291
|
-
}
|
|
3292
|
-
&.no-pad-bot {
|
|
3293
|
-
padding-bottom: 0;
|
|
3294
|
-
}
|
|
3295
|
-
&.no-pad-top {
|
|
3296
|
-
padding-top: 0;
|
|
3297
|
-
}
|
|
3298
|
-
*/
|
|
4602
|
+
padding: 1rem 0;
|
|
3299
4603
|
}
|
|
3300
4604
|
|
|
3301
4605
|
.row {
|
|
@@ -3339,10 +4643,10 @@ table span.badge {
|
|
|
3339
4643
|
grid-column: auto/span 12;
|
|
3340
4644
|
}
|
|
3341
4645
|
.row .offset-s1 {
|
|
3342
|
-
grid-column-start:
|
|
4646
|
+
grid-column-start: 3;
|
|
3343
4647
|
}
|
|
3344
4648
|
.row .offset-s2 {
|
|
3345
|
-
grid-column-start:
|
|
4649
|
+
grid-column-start: 2;
|
|
3346
4650
|
}
|
|
3347
4651
|
.row .offset-s3 {
|
|
3348
4652
|
grid-column-start: 4;
|
|
@@ -3587,7 +4891,7 @@ table span.badge {
|
|
|
3587
4891
|
|
|
3588
4892
|
nav {
|
|
3589
4893
|
color: var(--font-on-primary-color-main);
|
|
3590
|
-
background-color: var(--
|
|
4894
|
+
background-color: var(--secondary-container-color);
|
|
3591
4895
|
width: 100%;
|
|
3592
4896
|
height: 56px;
|
|
3593
4897
|
line-height: 56px;
|
|
@@ -3608,7 +4912,8 @@ nav a {
|
|
|
3608
4912
|
}
|
|
3609
4913
|
nav i,
|
|
3610
4914
|
nav [class^=mdi-], nav [class*=mdi-],
|
|
3611
|
-
nav i.material-icons
|
|
4915
|
+
nav i.material-icons, nav i.material-symbols-outlined,
|
|
4916
|
+
nav i.material-symbols-rounded, nav i.material-symbols-sharp {
|
|
3612
4917
|
display: block;
|
|
3613
4918
|
font-size: 24px;
|
|
3614
4919
|
height: 56px;
|
|
@@ -3671,7 +4976,8 @@ nav .brand-logo.right {
|
|
|
3671
4976
|
}
|
|
3672
4977
|
nav .brand-logo i,
|
|
3673
4978
|
nav .brand-logo [class^=mdi-], nav .brand-logo [class*=mdi-],
|
|
3674
|
-
nav .brand-logo i.material-icons
|
|
4979
|
+
nav .brand-logo i.material-icons, nav .brand-logo i.material-symbols-outlined,
|
|
4980
|
+
nav .brand-logo i.material-symbols-rounded, nav .brand-logo i.material-symbols-sharp {
|
|
3675
4981
|
float: left;
|
|
3676
4982
|
margin-right: 15px;
|
|
3677
4983
|
}
|
|
@@ -3684,13 +4990,13 @@ nav ul:not(.dropdown-content) {
|
|
|
3684
4990
|
list-style-type: none;
|
|
3685
4991
|
margin: 0;
|
|
3686
4992
|
}
|
|
3687
|
-
nav ul:not(.dropdown-content) li {
|
|
4993
|
+
nav ul:not(.dropdown-content) > li {
|
|
3688
4994
|
-webkit-transition: background-color 0.3s;
|
|
3689
4995
|
transition: background-color 0.3s;
|
|
3690
4996
|
float: left;
|
|
3691
4997
|
padding: 0;
|
|
3692
4998
|
}
|
|
3693
|
-
nav ul:not(.dropdown-content) a {
|
|
4999
|
+
nav ul:not(.dropdown-content) > li > a {
|
|
3694
5000
|
-webkit-transition: background-color 0.3s;
|
|
3695
5001
|
transition: background-color 0.3s;
|
|
3696
5002
|
font-size: 1rem;
|
|
@@ -3699,19 +5005,19 @@ nav ul:not(.dropdown-content) a {
|
|
|
3699
5005
|
padding: 0 15px;
|
|
3700
5006
|
cursor: pointer;
|
|
3701
5007
|
}
|
|
3702
|
-
nav ul:not(.dropdown-content) a.active {
|
|
5008
|
+
nav ul:not(.dropdown-content) > li > a.active {
|
|
3703
5009
|
background-color: var(--primary-color-raised-focus-solid);
|
|
3704
5010
|
}
|
|
3705
|
-
nav ul:not(.dropdown-content) a:hover:not(.active) {
|
|
5011
|
+
nav ul:not(.dropdown-content) > li > a:hover:not(.active) {
|
|
3706
5012
|
background-color: var(--primary-color-raised-hover-solid);
|
|
3707
5013
|
}
|
|
3708
|
-
nav ul:not(.dropdown-content) a.btn, nav ul:not(.dropdown-content) a.btn-small, nav ul:not(.dropdown-content) a.btn-large, nav ul:not(.dropdown-content) a.btn-flat, nav ul:not(.dropdown-content) a.btn-floating {
|
|
5014
|
+
nav ul:not(.dropdown-content) > li > a.btn, nav ul:not(.dropdown-content) > li > a.btn-small, nav ul:not(.dropdown-content) > li > a.btn-large, nav ul:not(.dropdown-content) > li > a.btn-flat, nav ul:not(.dropdown-content) > li > a.btn-floating {
|
|
3709
5015
|
margin-top: -2px;
|
|
3710
5016
|
margin-left: 15px;
|
|
3711
5017
|
margin-right: 15px;
|
|
3712
5018
|
display: inline-block;
|
|
3713
5019
|
}
|
|
3714
|
-
nav ul:not(.dropdown-content) a.btn > .material-icons, nav ul:not(.dropdown-content) a.btn-small > .material-icons, nav ul:not(.dropdown-content) a.btn-large > .material-icons, nav ul:not(.dropdown-content) a.btn-flat > .material-icons, nav ul:not(.dropdown-content) a.btn-floating > .material-icons {
|
|
5020
|
+
nav ul:not(.dropdown-content) > li > a.btn > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-small > .material-icons, nav ul:not(.dropdown-content) > li > a.btn > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-small > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-small > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-small > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-large > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-large > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-large > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-large > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-symbols-sharp {
|
|
3715
5021
|
height: inherit;
|
|
3716
5022
|
line-height: inherit;
|
|
3717
5023
|
}
|
|
@@ -3777,7 +5083,6 @@ a {
|
|
|
3777
5083
|
}
|
|
3778
5084
|
|
|
3779
5085
|
html {
|
|
3780
|
-
line-height: 1.5;
|
|
3781
5086
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
3782
5087
|
font-weight: normal;
|
|
3783
5088
|
color: var(--font-color-main);
|
|
@@ -4005,6 +5310,7 @@ small {
|
|
|
4005
5310
|
}
|
|
4006
5311
|
|
|
4007
5312
|
.card {
|
|
5313
|
+
overflow: hidden;
|
|
4008
5314
|
position: relative;
|
|
4009
5315
|
background-color: var(--background-color-card);
|
|
4010
5316
|
-webkit-transition: -webkit-box-shadow 0.25s;
|
|
@@ -4939,44 +6245,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
4939
6245
|
background-color: var(--surface-color);
|
|
4940
6246
|
}
|
|
4941
6247
|
|
|
4942
|
-
.sidenav .collapsible,
|
|
4943
|
-
.sidenav.sidenav-fixed .collapsible {
|
|
4944
|
-
border: none;
|
|
4945
|
-
-webkit-box-shadow: none;
|
|
4946
|
-
box-shadow: none;
|
|
4947
|
-
}
|
|
4948
|
-
.sidenav .collapsible li,
|
|
4949
|
-
.sidenav.sidenav-fixed .collapsible li {
|
|
4950
|
-
padding: 0;
|
|
4951
|
-
}
|
|
4952
|
-
.sidenav > li:hover,
|
|
4953
|
-
.sidenav > li.active,
|
|
4954
|
-
.sidenav.sidenav-fixed > li:hover,
|
|
4955
|
-
.sidenav.sidenav-fixed > li.active {
|
|
4956
|
-
background-color: transparent;
|
|
4957
|
-
}
|
|
4958
|
-
.sidenav .collapsible-header,
|
|
4959
|
-
.sidenav.sidenav-fixed .collapsible-header {
|
|
4960
|
-
background-color: transparent;
|
|
4961
|
-
border: none;
|
|
4962
|
-
line-height: inherit;
|
|
4963
|
-
height: inherit;
|
|
4964
|
-
padding: 0 16px;
|
|
4965
|
-
}
|
|
4966
|
-
.sidenav .collapsible-header i,
|
|
4967
|
-
.sidenav.sidenav-fixed .collapsible-header i {
|
|
4968
|
-
line-height: inherit;
|
|
4969
|
-
}
|
|
4970
|
-
.sidenav .collapsible-body,
|
|
4971
|
-
.sidenav.sidenav-fixed .collapsible-body {
|
|
4972
|
-
border: 0;
|
|
4973
|
-
background-color: var(--surface-color);
|
|
4974
|
-
}
|
|
4975
|
-
.sidenav .collapsible-body li a,
|
|
4976
|
-
.sidenav.sidenav-fixed .collapsible-body li a {
|
|
4977
|
-
padding: 0 23.5px 0 31px;
|
|
4978
|
-
}
|
|
4979
|
-
|
|
4980
6248
|
.collapsible.popout {
|
|
4981
6249
|
border: none;
|
|
4982
6250
|
-webkit-box-shadow: none;
|
|
@@ -5222,7 +6490,7 @@ textarea.materialize-textarea {
|
|
|
5222
6490
|
.input-field input:focus:not([readonly]) + label, .input-field textarea:focus:not([readonly]) + label {
|
|
5223
6491
|
color: var(--primary-color);
|
|
5224
6492
|
}
|
|
5225
|
-
.input-field input:focus:not([readonly]) + label, .input-field input:not(:placeholder-shown) + label, .input-field textarea:focus:not([readonly]) + label, .input-field textarea:not(:placeholder-shown) + label {
|
|
6493
|
+
.input-field input:focus:not([readonly]) + label, .input-field input:not([placeholder=" "]) + label, .input-field input:not(:placeholder-shown) + label, .input-field textarea:focus:not([readonly]) + label, .input-field textarea:not([placeholder=" "]) + label, .input-field textarea:not(:placeholder-shown) + label {
|
|
5226
6494
|
-webkit-transform: scale(0.75);
|
|
5227
6495
|
transform: scale(0.75);
|
|
5228
6496
|
top: 8px;
|
|
@@ -5327,7 +6595,7 @@ textarea.materialize-textarea {
|
|
|
5327
6595
|
.input-field.outlined input:focus:not([readonly]) + label, .input-field.outlined textarea:focus:not([readonly]) + label {
|
|
5328
6596
|
color: var(--primary-color);
|
|
5329
6597
|
}
|
|
5330
|
-
.input-field.outlined input:focus:not([readonly]) + label, .input-field.outlined input:not(:placeholder-shown) + label, .input-field.outlined textarea:focus:not([readonly]) + label, .input-field.outlined textarea:not(:placeholder-shown) + label {
|
|
6598
|
+
.input-field.outlined input:focus:not([readonly]) + label, .input-field.outlined input:not([placeholder=" "]) + label, .input-field.outlined input:not(:placeholder-shown) + label, .input-field.outlined textarea:focus:not([readonly]) + label, .input-field.outlined textarea:not([placeholder=" "]) + label, .input-field.outlined textarea:not(:placeholder-shown) + label {
|
|
5331
6599
|
top: -8px;
|
|
5332
6600
|
left: 16px;
|
|
5333
6601
|
margin-left: -4px;
|
|
@@ -5409,15 +6677,6 @@ textarea.materialize-textarea {
|
|
|
5409
6677
|
transform: none;
|
|
5410
6678
|
left: 1rem;
|
|
5411
6679
|
}
|
|
5412
|
-
& ~ .mdi-navigation-close,
|
|
5413
|
-
& ~ .material-icons {
|
|
5414
|
-
position: absolute;
|
|
5415
|
-
top: 0;
|
|
5416
|
-
right: 1rem;
|
|
5417
|
-
color: transparent;
|
|
5418
|
-
cursor: pointer;
|
|
5419
|
-
font-size: $input-icon-size;
|
|
5420
|
-
}
|
|
5421
6680
|
}
|
|
5422
6681
|
*/
|
|
5423
6682
|
/* Textarea */
|
|
@@ -5427,9 +6686,10 @@ textarea {
|
|
|
5427
6686
|
background-color: transparent;
|
|
5428
6687
|
}
|
|
5429
6688
|
textarea.materialize-textarea {
|
|
6689
|
+
padding-top: 26px !important;
|
|
6690
|
+
padding-bottom: 4px !important;
|
|
5430
6691
|
line-height: normal;
|
|
5431
6692
|
overflow-y: hidden; /* prevents scroll bar flash */
|
|
5432
|
-
padding: 0.8rem 0 0.8rem 0; /* prevents text jump on Enter keypress */
|
|
5433
6693
|
resize: none;
|
|
5434
6694
|
min-height: 3rem;
|
|
5435
6695
|
-webkit-box-sizing: border-box;
|
|
@@ -6265,6 +7525,7 @@ input[type=range]::-ms-thumb {
|
|
|
6265
7525
|
border-left: 2px solid var(--primary-color);
|
|
6266
7526
|
}
|
|
6267
7527
|
|
|
7528
|
+
/* This should be an UL-Element*/
|
|
6268
7529
|
.sidenav {
|
|
6269
7530
|
position: fixed;
|
|
6270
7531
|
width: 300px;
|
|
@@ -6274,7 +7535,7 @@ input[type=range]::-ms-thumb {
|
|
|
6274
7535
|
-webkit-transform: translateX(-100%);
|
|
6275
7536
|
transform: translateX(-100%);
|
|
6276
7537
|
height: 100vh;
|
|
6277
|
-
padding
|
|
7538
|
+
padding: 0;
|
|
6278
7539
|
background-color: var(--background-color-level-16dp-solid);
|
|
6279
7540
|
z-index: 999;
|
|
6280
7541
|
overflow-y: auto;
|
|
@@ -6283,6 +7544,11 @@ input[type=range]::-ms-thumb {
|
|
|
6283
7544
|
backface-visibility: hidden;
|
|
6284
7545
|
-webkit-transform: translateX(-105%);
|
|
6285
7546
|
transform: translateX(-105%);
|
|
7547
|
+
-webkit-user-select: none;
|
|
7548
|
+
-moz-user-select: none;
|
|
7549
|
+
-ms-user-select: none;
|
|
7550
|
+
user-select: none;
|
|
7551
|
+
/* Hover only on top row */
|
|
6286
7552
|
}
|
|
6287
7553
|
.sidenav.right-aligned {
|
|
6288
7554
|
right: 0;
|
|
@@ -6295,23 +7561,50 @@ input[type=range]::-ms-thumb {
|
|
|
6295
7561
|
.sidenav .collapsible {
|
|
6296
7562
|
margin: 0;
|
|
6297
7563
|
}
|
|
6298
|
-
.sidenav
|
|
6299
|
-
float: none;
|
|
6300
|
-
line-height: 48px;
|
|
6301
|
-
}
|
|
6302
|
-
.sidenav li:hover {
|
|
7564
|
+
.sidenav a:hover {
|
|
6303
7565
|
background-color: var(--hover-color);
|
|
6304
7566
|
}
|
|
6305
|
-
.sidenav
|
|
7567
|
+
.sidenav a:focus {
|
|
6306
7568
|
background-color: var(--focus-color);
|
|
6307
7569
|
}
|
|
7570
|
+
.sidenav li.active > a:not(.collapsible-header):not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-small):not(.btn-flat):not(.btn-large):not(.btn-floating) {
|
|
7571
|
+
color: var(--font-on-secondary-container-color);
|
|
7572
|
+
background-color: var(--secondary-container-color);
|
|
7573
|
+
}
|
|
7574
|
+
.sidenav .collapsible-body > ul {
|
|
7575
|
+
padding-left: 10px;
|
|
7576
|
+
}
|
|
7577
|
+
.sidenav li {
|
|
7578
|
+
list-style: none;
|
|
7579
|
+
display: grid;
|
|
7580
|
+
-webkit-align-content: center;
|
|
7581
|
+
-ms-flex-line-pack: center;
|
|
7582
|
+
align-content: center;
|
|
7583
|
+
}
|
|
6308
7584
|
.sidenav li > a {
|
|
6309
|
-
|
|
7585
|
+
/* https://stackoverflow.com/questions/5848090/full-width-hover-background-for-nested-lists */
|
|
7586
|
+
margin: 0 12px;
|
|
7587
|
+
padding: 0 16px;
|
|
7588
|
+
/*
|
|
7589
|
+
min-width: 0;
|
|
7590
|
+
white-space: nowrap;
|
|
7591
|
+
overflow: hidden;
|
|
7592
|
+
text-overflow: ellipsis;
|
|
7593
|
+
*/
|
|
7594
|
+
display: -webkit-box;
|
|
7595
|
+
display: -webkit-flex;
|
|
7596
|
+
display: -ms-flexbox;
|
|
7597
|
+
display: flex;
|
|
7598
|
+
height: 48px;
|
|
6310
7599
|
font-size: 14px;
|
|
6311
7600
|
font-weight: 500;
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
7601
|
+
-webkit-box-align: center;
|
|
7602
|
+
-webkit-align-items: center;
|
|
7603
|
+
-ms-flex-align: center;
|
|
7604
|
+
align-items: center;
|
|
7605
|
+
overflow: hidden;
|
|
7606
|
+
border-radius: 100px;
|
|
7607
|
+
/* TODO: Use special class in future like "mw-icon" */
|
|
6315
7608
|
}
|
|
6316
7609
|
.sidenav li > a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-flat):not(.btn-large):not(.btn-floating) {
|
|
6317
7610
|
color: var(--font-color-main);
|
|
@@ -6319,13 +7612,14 @@ input[type=range]::-ms-thumb {
|
|
|
6319
7612
|
.sidenav li > a.btn, .sidenav li > a.btn-small, .sidenav li > a.btn-large, .sidenav li > a.btn-flat, .sidenav li > a.btn-floating {
|
|
6320
7613
|
margin: 10px 15px;
|
|
6321
7614
|
}
|
|
6322
|
-
.sidenav li > a >
|
|
6323
|
-
|
|
6324
|
-
|
|
6325
|
-
|
|
6326
|
-
|
|
6327
|
-
|
|
7615
|
+
.sidenav li > a > .material-icons, .sidenav li > a > .material-symbols-outlined, .sidenav li > a > .material-symbols-rounded, .sidenav li > a > .material-symbols-sharp {
|
|
7616
|
+
display: -webkit-inline-box;
|
|
7617
|
+
display: -webkit-inline-flex;
|
|
7618
|
+
display: -ms-inline-flexbox;
|
|
7619
|
+
display: inline-flex;
|
|
7620
|
+
vertical-align: middle;
|
|
6328
7621
|
color: var(--font-color-medium);
|
|
7622
|
+
margin-right: 12px;
|
|
6329
7623
|
}
|
|
6330
7624
|
.sidenav .divider {
|
|
6331
7625
|
margin: 8px 0 0 0;
|
|
@@ -6338,9 +7632,6 @@ input[type=range]::-ms-thumb {
|
|
|
6338
7632
|
font-weight: 500;
|
|
6339
7633
|
line-height: 48px;
|
|
6340
7634
|
}
|
|
6341
|
-
.sidenav .subheader:hover {
|
|
6342
|
-
background-color: transparent;
|
|
6343
|
-
}
|
|
6344
7635
|
.sidenav .user-view {
|
|
6345
7636
|
position: relative;
|
|
6346
7637
|
padding: 32px 32px 0;
|
|
@@ -6421,15 +7712,6 @@ input[type=range]::-ms-thumb {
|
|
|
6421
7712
|
padding: 16px 16px 0;
|
|
6422
7713
|
}
|
|
6423
7714
|
}
|
|
6424
|
-
.sidenav .collapsible-body > ul:not(.collapsible) > li.active,
|
|
6425
|
-
.sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active {
|
|
6426
|
-
background-color: var(--primary-color);
|
|
6427
|
-
}
|
|
6428
|
-
.sidenav .collapsible-body > ul:not(.collapsible) > li.active a:not(.btn):not(.btn-large):not(.btn-small),
|
|
6429
|
-
.sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active a:not(.btn):not(.btn-large):not(.btn-small) {
|
|
6430
|
-
color: var(--font-on-primary-color-main);
|
|
6431
|
-
}
|
|
6432
|
-
|
|
6433
7715
|
.sidenav .collapsible-body {
|
|
6434
7716
|
padding: 0;
|
|
6435
7717
|
}
|
|
@@ -6446,6 +7728,21 @@ input[type=range]::-ms-thumb {
|
|
|
6446
7728
|
display: none;
|
|
6447
7729
|
}
|
|
6448
7730
|
|
|
7731
|
+
.sidenav .collapsible,
|
|
7732
|
+
.sidenav.sidenav-fixed .collapsible {
|
|
7733
|
+
border: none;
|
|
7734
|
+
-webkit-box-shadow: none;
|
|
7735
|
+
box-shadow: none;
|
|
7736
|
+
}
|
|
7737
|
+
.sidenav .collapsible-header,
|
|
7738
|
+
.sidenav.sidenav-fixed .collapsible-header {
|
|
7739
|
+
border: none;
|
|
7740
|
+
}
|
|
7741
|
+
.sidenav .collapsible-body,
|
|
7742
|
+
.sidenav.sidenav-fixed .collapsible-body {
|
|
7743
|
+
border: none;
|
|
7744
|
+
}
|
|
7745
|
+
|
|
6449
7746
|
/*
|
|
6450
7747
|
@license
|
|
6451
7748
|
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
|
@@ -7225,6 +8522,7 @@ input[type=range]::-ms-thumb {
|
|
|
7225
8522
|
content: "";
|
|
7226
8523
|
display: block;
|
|
7227
8524
|
position: absolute;
|
|
8525
|
+
pointer-events: none;
|
|
7228
8526
|
width: 100%;
|
|
7229
8527
|
height: 100%;
|
|
7230
8528
|
top: 0;
|
|
@@ -7725,80 +9023,4 @@ input[type=text].text-primary {
|
|
|
7725
9023
|
text-align: center;
|
|
7726
9024
|
margin-top: 1.2rem;
|
|
7727
9025
|
}
|
|
7728
|
-
}
|
|
7729
|
-
:root {
|
|
7730
|
-
--surface-color: #f3f6fc;
|
|
7731
|
-
--background-color: #ffffff;
|
|
7732
|
-
--font-color-main: rgba(0, 0, 0, 0.87);
|
|
7733
|
-
--font-color-medium: rgba(0, 0, 0, 0.56);
|
|
7734
|
-
--font-color-disabled: rgba(0, 0, 0, 0.38);
|
|
7735
|
-
--font-on-primary-color-main: rgba(255, 255, 255, 0.87);
|
|
7736
|
-
--font-on-primary-color-dark-main: rgba(255, 255, 255, 0.87);
|
|
7737
|
-
--font-on-primary-color-dark-medium: rgba(255, 255, 255, 0.60);
|
|
7738
|
-
--font-on-primary-color-medium: rgba(255, 255, 255, 0.60);
|
|
7739
|
-
--font-on-primary-color-disabled: rgba(255, 255, 255, 0.38);
|
|
7740
|
-
--font-on-secondary-color-main: rgba(0, 0, 0, 0.87);
|
|
7741
|
-
--hover-color: rgba(0, 0, 0, 0.04);
|
|
7742
|
-
--focus-color: rgba(0, 0, 0, 0.12);
|
|
7743
|
-
--focus-color-solid: #E0E0E0;
|
|
7744
|
-
--background-color-disabled: rgba(0, 0, 0, 0.12);
|
|
7745
|
-
--background-color-level-4dp: rgba(0, 0, 0, 0.09);
|
|
7746
|
-
--background-color-level-16dp-solid: var(--surface-color);
|
|
7747
|
-
--background-color-slight-emphasis: rgba(0, 0, 0, 0.025); /* stripes in table */
|
|
7748
|
-
--background-color-card: var(--surface-color);
|
|
7749
|
-
--tooltip-background-color: #313033;
|
|
7750
|
-
--tooltip-font-color: rgba(255, 255, 255, 0.77);
|
|
7751
|
-
--separator-color: #DDDDDD; /* borders between components */
|
|
7752
|
-
--error-color: #F44336;
|
|
7753
|
-
--slider-track-color: rgba(0, 0, 0, 0.26);
|
|
7754
|
-
--switch-thumb-off-color: #ffffff;
|
|
7755
|
-
--carousel-indicator-color: rgba(255, 255, 255, 0.45);
|
|
7756
|
-
--carousel-indicator-active-color: #FFF;
|
|
7757
|
-
--primary-color: #26a69a;
|
|
7758
|
-
--primary-color-dark: #009688;
|
|
7759
|
-
--primary-color-numeric: 38, 166, 154;
|
|
7760
|
-
--primary-color-raised-hover-solid: #30B0A4;
|
|
7761
|
-
--primary-color-raised-focus-solid: #44C4B8;
|
|
7762
|
-
--primary-color-font-medium-color: rgba(var(--primary-color-numeric), 0.7);
|
|
7763
|
-
--primary-color-font-disabled-color: rgba(var(--primary-color-numeric), 0.4);
|
|
7764
|
-
--primary-color-hover-opaque: rgba(var(--primary-color-numeric), 0.06);
|
|
7765
|
-
--primary-color-focus-opaque: rgba(var(--primary-color-numeric), 0.18);
|
|
7766
|
-
--secondary-color: #EF5350;
|
|
7767
|
-
--secondary-color-hover-solid: #FE625F;
|
|
7768
|
-
--secondary-color-focus-solid: #FF7B78;
|
|
7769
|
-
--md_sys_color_on-surface: 28, 27, 31;
|
|
7770
|
-
}
|
|
7771
|
-
|
|
7772
|
-
:root[theme=dark] {
|
|
7773
|
-
--background-color: #121212;
|
|
7774
|
-
--surface-color: #242424;
|
|
7775
|
-
--font-color-main: rgba(255, 255, 255, 0.87);
|
|
7776
|
-
--font-color-medium: rgba(255, 255, 255, 0.60);
|
|
7777
|
-
--font-color-disabled: rgba(255, 255, 255, 0.38);
|
|
7778
|
-
--font-on-primary-color-main: rgba(0, 0, 0, 0.87);
|
|
7779
|
-
--font-on-primary-color-dark-main: rgba(255, 255, 255, 0.87);
|
|
7780
|
-
--font-on-primary-color-dark-medium: rgba(255, 255, 255, 0.60);
|
|
7781
|
-
--font-on-primary-color-medium: rgba(0, 0, 0, 0.56);
|
|
7782
|
-
--font-on-primary-color-disabled: rgba(0, 0, 0, 0.38);
|
|
7783
|
-
--hover-color: rgba(255, 255, 255, 0.04);
|
|
7784
|
-
--focus-color: rgba(255, 255, 255, 0.12);
|
|
7785
|
-
--focus-color-solid: #424242;
|
|
7786
|
-
--background-color-disabled: rgba(255, 255, 255, 0.12);
|
|
7787
|
-
--background-color-level-4dp: rgba(255, 255, 255, 0.09);
|
|
7788
|
-
--background-color-level-16dp-solid: #262626;
|
|
7789
|
-
--background-color-card: var(--surface-color);
|
|
7790
|
-
--background-color-slight-emphasis: rgba(255, 255, 255, 0.05);
|
|
7791
|
-
--separator-color: #424242; /* borders between components */
|
|
7792
|
-
--error-color: #CF6679;
|
|
7793
|
-
--slider-track-color: rgba(255, 255, 255, 0.26);
|
|
7794
|
-
--switch-thumb-off-color: #bababa;
|
|
7795
|
-
--primary-color: #B39DDB;
|
|
7796
|
-
--primary-color-dark: #9575CD;
|
|
7797
|
-
--primary-color-numeric: 179, 157, 219;
|
|
7798
|
-
--primary-color-raised-hover-solid: #C2ACEA;
|
|
7799
|
-
--primary-color-raised-focus-solid: #DBC5FF;
|
|
7800
|
-
--secondary-color: #CDDC39;
|
|
7801
|
-
--secondary-color-hover-solid: #DCEB48;
|
|
7802
|
-
--secondary-color-focus-solid: #F5FF61;
|
|
7803
|
-
--md_sys_color_on-surface: 230, 225, 229;
|
|
7804
9026
|
}
|