-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
69 lines (58 loc) · 978 Bytes
/
style.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
@font-face {
font-family: "Helvetica Neue";
src: url("helvetica-neue.woff");
}
@font-face {
font-family: "Helvetica Neue Medium";
src: url("helvetica-neue-medium.woff");
}
@font-face {
font-family: "Helvetica";
src: url("helvetica.woff");
}
body {
color: #666666;
box-sizing: content-box;
padding-left: 15px;
padding-right: 15px;
position: relative;
width: 940px;
margin: 0 auto;
-webkit-font-smoothing: antialiased;
}
@media (max-width:940px) {
body {
width: auto
}
}
p, li {
font-size: 16px;
font-family: "Helvetica Neue";
}
p {
line-height: 1.5em;
}
h1, h2, h3 {
color: #252525;
font-family: "Helvetica";
}
h1 {
font-weight: 700;
font-size: 24px;
padding-bottom: 20px;
}
h2 {
font-weight: 700;
font-size: 18px;
}
h3 {
font-weight: 700;
font-size: 16px;
}
a {
color: #00a0d8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}