-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (67 loc) · 1 KB
/
style.css
File metadata and controls
79 lines (67 loc) · 1 KB
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
73
74
75
76
77
78
79
body {
background: #F6F6F6;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-weight: 400;
color: #333;
padding: 0;
margin: 0;
}
a {
color: #000;
border-bottom: 1px solid #FF6000;
text-decoration: none;
font-weight: 600;
}
a:hover {
color: #FF6000;
text-decoration: none;
}
strong {
font-weight: 600;
}
h1 {
padding: 0 20px 20px 0;
border-bottom: 1px dotted #999;
margin: 0 0 20px 0;
font-weight: 700;
font-size: 2.5em;
font-family: "Allan", sans-serif;
white-space: nowrap;
overflow: visible;
}
h2 {
font-weight: 300;
font-size: 1.2em;
padding: 0 20px 5px 0;
margin-top: 0;
border-bottom: 1px dotted #999;
}
p {
padding: 0;
margin: 10px 0;
line-height: 1.5;
font-size: 1em;
}
p.spacer {
margin-bottom: 2em;
}
.avatar {
border-radius: 50%;
max-width: 100px;
vertical-align: middle;
margin-right: 0.5em;
}
.content {
max-width: 760px;
padding: 3em;
box-sizing: border-box;
}
@media (max-width: 600px) {
.content {
padding: 2em;
}
.avatar {
max-width: 80px;
}
}