-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
42 lines (37 loc) · 833 Bytes
/
styles.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
html {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
height: 100%;
font-size: 34px;
}
@media (prefers-color-scheme: light) {
html {
--background-color: #fff;
--text-color: #000;
}
}
@media (prefers-color-scheme: dark) {
html {
--background-color: #000;
--text-color: #fff;
}
}
body {
height: 100%;
background-color: var(--background-color);
color: var(--text-color);
}
input {
background-color: var(--background-color);
color: var(--text-color);
font-size: 34px;
height: fit-content;
}
#template {
width: fit-content;
padding: 40px;
display: grid;
grid-template-columns: 150px 20px 150px 20px 150px;
grid-template-rows: max-content max-content;
column-gap: 20px;
}