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
|
body {
font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #FCFCFC;
}
img {
max-width: 100%;
height: auto;
max-height: 40rem;
vertical-align: middle;
border: 0;
}
header,
footer {
margin: 4rem 0;
text-align: center;
}
.site-title {
margin-top: 2rem;
}
.entry-title {
margin-top: 2rem;
margin-bottom: 0;
}
.entry-title a {
text-decoration: none;
}
.entry-meta {
font-size: 1.7rem;
color: #888;
}
.footer-link {
margin: 2rem 0;
}
.footer-link a {
text-decoration: none;
}
.hr {
height: 1px;
margin: 2rem 0;
background: #E1E1E1;
background: -webkit-gradient(linear, left top, right top, from(white), color-stop(#E1E1E1), to(white));
background: -webkit-linear-gradient(left, white, #E1E1E1, white);
background: linear-gradient(to right, white, #E1E1E1, white);
}
|