-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
61 lines (49 loc) · 1021 Bytes
/
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
@font-face {
font-family: "JetBrains Mono";
font-weight: 400;
font-style: normal;
src: url("fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2"), url("fonts/jetbrains-mono-latin-400-normal.woff") format("woff");
}
@font-face {
font-family: "JetBrains Mono";
font-weight: 700;
font-style: normal;
src: url("fonts/jetbrains-mono-latin-700-normal.woff2") format("woff2"), url("fonts/jetbrains-mono-latin-700-normal.woff") format("woff");
}
body {
font-family: JetBrains Mono, monospace;
font-size: 1.2rem;
margin: 2rem;
}
button,
input[type="submit"] {
font-family: JetBrains Mono, monospace;
font-size: 1.2rem;
cursor: pointer;
border: none;
}
input[type="checkbox"] {
width: 1.2rem;
height: 1.2rem;
}
.avatar {
width: 3vh;
height: 3vh;
border-radius: 50%;
}
#history > li:nth-child(1) {
margin: 2vh 0;
}
#history > li {
margin: 4vh 0;
}
.bottom {
display: flex;
align-items: end;
}
ul li {
margin-bottom: 0.5rem;
}
#themeButton {
font-size: 2rem;
}