-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
72 lines (55 loc) · 883 Bytes
/
index.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
@import "github-markdown.css";
html {
text-align: center;
font: 1em 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
body {
margin: auto;
text-align: left;
}
/** header **/
header {
background-color: #EBEBEB;
color:darkgoldenrod;
margin: 0 0 2rem 0;
padding: 1rem 0;
border-bottom: 1px #C6C6C6 solid;
font-size: 0.9rem;
font-weight: normal;
}
.header-container {
width: 50rem;
margin: auto;
}
header h1 {
display: flex;
align-items: center;
font-weight: normal;
margin-top: 0;
margin-bottom: 0.5rem;
}
header h1 strong {
font-weight: bold;
}
header .logo {
height: 2rem;
margin-right: 0.5rem;
}
/** page layout **/
main,
footer {
max-width: 50rem;
padding: 0 2rem;
margin: auto;
}
footer {
margin-top: 4rem;
margin-bottom: 2rem;
}
main h1,
main h1 + blockquote {
display: none;
}
footer {
font-size: 0.8rem;
}