-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (54 loc) · 928 Bytes
/
style.css
File metadata and controls
63 lines (54 loc) · 928 Bytes
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
html {
line-height: 1.5em;
}
body {
font-family: Avenir, Arial, YuGothic, 'Yu Gothic', sans-serif;
color: #333;
}
header {
color: white;
text-align: center;
background-color: darkslategrey;
overflow: hidden;
}
header > h1 {
display: inline-block;
font-size: 4em;
line-height: 1.3em;
border: .15em white solid;
border-radius: .5em;
padding: .5em;
margin: 2em .5em;
}
@media screen and (min-width: 768px) {
header > h1 {
margin: 3em 0;
}
}
main > dl {
width: 100%;
max-width: 30em;
padding: 0 1em;
margin: 4em auto;
box-sizing: border-box;
}
main > dl > dt {
color: darkslategray;
font-weight: bold;
margin-top: 1em;
}
main > dl > dd {
margin-left: 1.5em;
}
svg.facebook-icon {
fill: grey;
width: .8em;
height: .8em;
vertical-align: top;
margin-top: .3em;
margin-left: .2em;
}
a:hover > svg.facebook-icon,
a:active > svg.facebook-icon {
fill: #4267b2;
}