-
Notifications
You must be signed in to change notification settings - Fork 9
/
main.css
77 lines (63 loc) · 1.2 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coming+Soon&display=swap');
body {
background-color: papayawhip;
max-width: 800px;
font-size: 120%;
line-height: 1.3;
margin: auto;
padding: 20px;
font-family: 'Open Sans', 'Roboto', sans-serif;
}
h1,
h2 {
font-family: 'Coming Soon', 'Comic Sans', sans-serif;
font-weight: bold;
}
figcaption {
opacity: 80%;
font-size: 90%;
}
.egg-heading {
vertical-align: middle;
font-family: 'Coming Soon', 'Comic Sans', sans-serif;
}
.egg-heading a {
text-decoration: none;
color: inherit;
}
.egg-letter {
line-height: 0.75em;
display: inline-block;
border-bottom: solid .25em #daa52099;
}
.word {
white-space: nowrap
}
.venue::before {
content: "["
}
.venue::after {
content: "]"
}
.venue {
opacity: 80%;
white-space: nowrap;
}
footer {
font-size: 60%;
opacity: 80%;
margin-top: 5em;
text-align: center;
}
nav ul {
list-style: none;
padding-left: 0px;
}
nav ul li {
display: inline-block;
margin-right: 1rem;
}
body ul li:not(:last-child) {
margin-bottom: 0.3rem;
}