-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpage.css
70 lines (68 loc) · 998 Bytes
/
page.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
@media screen {
body {
font-family: sans-serif;
}
}
article {
box-sizing: border-box;
margin: 1em;
}
@media only screen and (min-width: 29em) {
article {
max-width: 27rem;
margin: auto;
}
}
h1 {
font-size: x-large;
font-size: xx-large;
margin-top: 1em;
margin-bottom: 0.5em;
}
header h1 {
text-align: center;
padding-bottom: 5px;
border-bottom: 1px solid black;
}
h2 {
font-size: x-large;
margin-top: 2.6ex;
margin-bottom: 0.4ex;
}
h3 {
font-size: large;
font-weight: bolder;
margin-bottom: 0;
}
h3 + ul {
margin-top: 0;
}
h2 + p {
margin-top: 0;
}
header > img,
main > img {
max-height: 15vh;
display: block;
margin: 4em auto 1em;
}
p.ingress {
font-style: italic;
font-size: larger;
}
ul.numbered {
list-style-type: none;
padding-left: 1.5em;
}
ul.numbered li {
text-indent: -1.7em;
}
footer {
margin-top: 2em;
margin-bottom: 1em;
border-top: 1px solid black;
font-size: smaller;
}
address {
font-style: normal;
}