-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (51 loc) · 823 Bytes
/
style.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
:root {
--color-dark: #FFF;
--color-light: #111;
--color-medium: #999;
}
body {
font-family: sans-serif;
margin: 0;
color: var(--color-dark);
background: var(--color-light);
}
.container {
text-align: center;
min-height: calc(100vh - 6rem);
}
.content {
max-width: 480px;
min-width: 30vw;
padding: 1rem;
align-self: center;
justify-content: center;
margin: auto;
}
h1 {
font-family: monospace;
font-size: 1.5rem;
font-weight: normal;
}
h2 {
font-size: 1.25rem;
font-weight: normal;
color: var(--color-medium);
line-height: 1.5;
}
p {
font-size: 1rem;
font-weight: 100;
line-height: 1.5;
}
footer {
text-align: center;
margin: 1.5rem 1.5rem 3rem;
}
.svg-container {
width: 200px;
margin-bottom: 5%;
margin-top: 10%;
}
.svg.svg-stroke {
stroke: #FFF;
}