-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (57 loc) · 989 Bytes
/
Copy pathstyle.css
File metadata and controls
68 lines (57 loc) · 989 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
64
65
66
67
68
* {
max-width: 90%;
background-color: #00328A;
font-family: 'Quattrocento', serif;
font-size: 16px;
color: #ccc;
margin: 0 auto;
overflow: auto;
}
body {
width: 80%;
max-width: 800px;
margin-top: 16px;
padding: 16px;
border: solid 1px #ccc;
border-radius: 4px;
background-color: #fff8f8;
}
header, .wrapper, h1, h2, h3, p, a {
background: #fff8f8;
margin: 16px auto 6px auto;
}
h1 {
font-size: 35px;
font-weight: bolder;
}
h2 {
font-size: 25px;
margin-bottom: 16px;
}
h3 {
font-size: 22px;
}
header, .wrapper {
margin-bottom: 16px;
}
h3:last-of-type {
margin-top: 32px;
}
p {
line-height: 23px;
}
a:link {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
background: #fff8f8;
}
a:visited {
font-weight: normal;
}
a:hover {
text-decoration: underline;
cursor: pointer;
}