blob: ab7255067912df47e9cf888ca8619a97e946e73f (
plain)
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
|
@font-face {
font-family: 'Material Symbols Outlined';
font-style: normal;
src: url(material-symbols-outlined.woff2) format('woff2');
}
.material-symbols-outlined {
/* eslint-disable-next-line css/font-family-fallbacks */
font-family: 'Material Symbols Outlined';
font-weight: normal;
font-style: normal;
font-size: 24px;
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
}
:root {
color-scheme: light dark;
}
body {
background-color: light-dark(#eee, #333);
color: light-dark(#333, #eee);
font-family: sans-serif;
}
button {
background-color: light-dark(#ccc, #555);
font-size: 175%;
}
.invisible {
display: none;
}
#error {
color: red;
font-size: 250%;
}
|