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
.pagination {
position: relative;
width: 100%;
max-width: 100%;
margin: 1rem auto;
font-size: 1.3rem;
color: #9eabb3;
text-align: center;
}
.pagination a {
color: #9eabb3;
transition: all .2s ease;
}
.page-number {
display: inline-block;
padding: 2px 0;
min-width: 100px;
}
.newer-posts, .older-posts {
position: absolute;
display: inline-block;
padding: 0 15px;
border: #ddd 1px dashed;
text-decoration: none;
transition: border .3s ease;
}
.newer-posts {
left: 0;
}
.older-posts {
right: 0;
}
.site-footer {
padding-bottom: 20px !important;
}
.nav-current a:visited {
color: yellow;
}
@media (min-width: 900px) {
.ctsingle .post-feed {
margin-top: -70px;
padding-top: 0;
}
.ctsingle .site-nav {
position: relative;
top: -70px;
}
}
@media (min-width: 795px) {
.ctsingle .post-feed p {
font-size: 1.8rem;
line-height: 1.55em;
}
}
@media (max-width: 650px) {
.hide {
display: none !important;
}
.copyright {
text-align: center;
}
}
.post-full-content pre code {
color: #e5eff5;
}