-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
106 lines (91 loc) · 1.43 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
:root {
color-scheme: light;
--background-color: #fff;
--text-color: #252525;
--muted-text-color: #747474;
--link: #267dff;
}
@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark;
--background-color: #252525;
--text-color: #fff;
--muted-text-color: #929292;
--link: #6DA8FF;
}
}
body {
background-color: var(--background-color);
font-family: 'Inter', sans-serif;
color: var(--text-color);
display: flex;
align-items: flex-start;
margin: 2.5rem;
gap: 2.5rem;
}
.main {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 40rem;
}
.section {
margin-top: 0.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
a {
color: var(--link);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
font-weight: 800;
font-size: 2rem;
padding: 0;
margin: 0;
}
h2 {
font-weight: 800;
font-size: 1.5rem;
padding: 0;
margin: 0;
}
h3 {
font-weight: 600;
font-size: 1.125rem;
padding: 0;
margin: 0;
}
p {
padding: 0;
margin: 0;
}
.informationText {
color: var(--muted-text-color);
font-size: 0.75rem;
max-width: 75%;
}
.input {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
align-items: center;
}
.input > label {
flex-grow: 1;
}
.radio {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.outputArea {
display: flex;
flex-direction: column;
gap: 1rem;
}