blob: 86f5d571c5f6e76abd4166df33d890ad732e4066 (
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
45
46
47
48
49
50
|
:root {
--dark-grey: #282c34;
--white: #fff;
--red: #ff7e7e;
--font-xxl: 44px;
--font-xl: 38px;
--font-l: 32px;
--font-m: 26px;
--font-s: 20px;
}
html {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--dark-grey);
color: var(--white);
}
body {
margin: 60px auto;
padding: 0 10px;
max-width: 900px;
text-align: left;
font-size: var(--font-s);
}
button {
border-radius: 0;
border: none;
outline: none;
padding: 5px;
margin: 0 -5px;
background: var(--dark-grey);
color: var(--white);
font-size: var(--font-s);
cursor: pointer;
display: flex;
flex-flow: row nowrap;
align-items: center;
}
button:hover {
text-decoration: underline;
}
a {
color: var(--white);
}
|