forked from samarsault/plainwhite-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdark.scss
117 lines (97 loc) · 1.43 KB
/
dark.scss
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
114
115
116
117
.dark,
.dark * {
$dark_text_color: #f6f6f6;
$dark_link_color: #4da3ff;
background-color: #171717;
color: $dark_text_color;
border-color: #e6e6e6;
.about{
img.light {
display: none;
}
img.dark {
display: inline;
}
}
.post p {
color: #ddd;
}
.social [class^="icon-"] {
color: $dark_text_color
}
#posts-label {
color: $dark_text_color;
border-bottom: 1px solid #272727;
}
@import 'ext/solarized-dark';
.highlight, .highlight *
{
background-color: #00080a;
color: #93a1a1;
}
div.highlight-dark {
padding: 5px 20px;
}
pre.highlight-dark, code {
font-family: 'Consolas', Menlo, monospace;
line-height: 1.4em;
tab-size: 4;
}
.post-categories {
li {
background-color: #333;
color: #fff;
}
}
a {
color: $dark_link_color;
}
#title a {
color: #fff;
&:hover {
color: $dark_link_color;
}
}
.posts-labelgroup {
border-bottom: 1px solid #333;
.search-results {
background-color: #333;
a {
color: white;
&:hover {
background-color: #171717;
}
}
}
.search-section i {
background-color: transparent;
}
}
.posts-labelgroup:hover {
i {
color: white;
}
input {
color: white;
}
}
.posts-labelgroup.focus-within {
.search-section {
background-color: #333;
}
input {
color: $dark_text_color;
}
i {
color: white;
}
}
}
.dark table {
th, td {
border: 1px solid #333;
}
th {
background-color: #0d0d0d;
}
}