-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
67 lines (58 loc) · 1003 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
63
64
65
66
67
html {
font-size: 16px;
font-family: Roboto, Helvetica, sans-serif;
font-style: italic;
font-weight: 600;
}
*, *:after, *:before {
box-sizing: border-box;
}
body {
padding-top: 8vh;
padding-bottom: 8vh;
padding-left: 8vw;
padding-right: 8vw;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 0;
}
p.manifesto {
font-size: 8vh;
line-height: 12vh;
}
em.word {
position: relative;
display: inline-block;
color: #fff;
margin-left: 0.1em;
margin-right: 0.1em;
cursor: pointer;
}
em.word:before {
content: '';
opacity: 0.9;
background-color: var(--color);
display: block;
position: absolute;
top: 0.1em;
bottom: 0.1em;
left: -0.2em;
right: -0.2em;
z-index: -1;
}
nav.links {
display: flex;
flex-direction: column;
}
nav.links > a {
color: #000;
font-size: calc(8px + 1vh);
}
nav.links > a:not(last-child) {
margin-bottom: 2vh;
}
nav.links > a:hover {
text-decoration: none;
}