-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.css
114 lines (97 loc) · 1.86 KB
/
styles.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url(http://fonts.googleapis.com/css?family=Open+Sans:700,600,400);
::-moz-selection { color: white; background: #ee4444; text-shadow: none; }
::selection { color: white; background: #ee4444; text-shadow: none; }
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
@media screen and (max-width: 900px) { html { font-size: 0.875rem; } }
@media screen and (min-width: 900px) { html { font-size: 0.875rem; } }
@media screen and (min-width: 1024px) { html { font-size: 1rem; } }
@media screen and (min-width: 1200px) { html { font-size: 1.125rem; } }
body {
position: relative;
background: #fff;
font-family: 'Open Sans', 'Helvetica Neue', helvetica, sans-serif;
line-height: 1.5;
color: #333;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
-webkit-font-smoothing: antialiased;
}
header {
max-width: 55rem;
margin: 3rem auto 0 auto;
padding: 0 2rem;
text-align: left;
}
header ul {
display: inline-block;
margin: 0;
padding: 0;
}
header li {
display: inline-block;
padding: 0 1rem 0 0;
font-size: 0.9rem;
}
header a {
color: #999;
text-decoration: none;
}
article {
max-width: 55rem;
margin: 0 auto;
padding: 0 2rem;
}
a {
color: #ee4444;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
margin: 2rem 0 1rem 0;
}
h1 {
font-size: 2.250rem;
margin-bottom: 2rem;
}
h2 {
font-size: 1.50rem;
}
h3 {
font-size: 1.313rem;
}
h4 {
font-size: 1.125rem;
font-weight: bold;
}
footer {
padding: 2rem 0;
text-align: center;
}
footer ul {
display: inline-block;
margin: 0;
padding: 0;
}
footer li {
display: inline-block;
padding: 0 1rem;
font-size: 0.9rem;
}
footer a {
color: #999;
text-decoration: none;
}