-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 779 Bytes
/
style.css
File metadata and controls
59 lines (51 loc) · 779 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
* { padding: 0; margin: 0; }
html {
background: #F0F0F0;
color: #333;
font-family: 'Work Sans', sans-serif;
}
body {
max-width: 600px;
margin: 50px auto;
padding: 0 40px;
}
h1 {
color: #000;
font-size: 120px;
padding-bottom: 50px;
margin-bottom: 50px;
font-weight: bold;
text-align: center;
border-bottom: 2px dotted #AAA;
}
.subtitle {
font-size: 40px;
text-transform: uppercase;
display: block;
}
h2 {
font-weight: 600;
text-align: center;
margin-top: 4rem;
margin-bottom: 1rem;
font-size: 24px;
color: #000;
}
p {
line-height: 1.5em;
margin-bottom: 1rem;
}
footer {
font-size: 14px;
text-align: center;
margin-top: 100px;
margin-bottom: 75px;
color: #777;
}
.header {
text-align: right;
width: 90%;
}
.header a {
color: #777;
}