-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
66 lines (55 loc) · 1.22 KB
/
index.css
File metadata and controls
66 lines (55 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
box-sizing: border-box;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-kerning: auto;
}
html {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
padding: 0;
--color-background: #0b0b0b;
--color-text: #ededed;
--color-text-secondary: #707070;
color: var(--color-text);
background-color: var(--color-background);
}
@media(prefers-color-scheme: light) {
body {
--color-background: #f7f5f2;
--color-text: #000000;
--color-text-secondary: #585858;
}
}
.container {
width: 100vw;
height: 100vh;
}
.container,
.container>div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
gap: 1rem;
}
.container>div {
flex-direction: row;
}
.main {
display: flex;
flex-direction: column;
gap: 8px;
width: fit-content;
}
label {
font-size: 0.75rem;
color: var(--color-text-secondary);
font-style: italic;
font-weight: 500;
}