blob: aaefa04eda132841e378eba0e0253ea507e1f773 (
plain)
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
|
body {
background-color: #2f2f2f;
color: white;
}
.header {
.blog-title .logo {
color: white;
}
.menu .current-menu-item-link {
color: white;
}
.menu .menu-item-link {
&:hover {
color: white;
}
}
}
.posts {
.post-title .post-title-link {
color: white;
}
.post-meta {
color: white;
}
.post-content a {
color: #e5e5e5;
}
}
.post {
border-color: #616161;
code, pre {
color: white;
}
.highlight {
background-color: black;
}
a {
color: #e5e5e5;
}
}
#prev_next {
a {
color: #e5e5e5;
}
.article-nav-title {
color: #e5e5e5;
}
}
.archive .post-archive .post-item .post-title {
color: white;
}
.term-name {
color: white;
}
|