node-dark.css
1.2 KB
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
/*---------------------------------------------------
LESS Elements 0.9
---------------------------------------------------
A set of useful LESS mixins
More info at: http://lesselements.com
---------------------------------------------------*/
/**
* https://github.com/rhiokim/markdown-css
* solarized-dark style
* made by rhio.kim
* powered by http://ethanschoonover.com/solarized
*/
.node-dark {
padding: 20px;
color: #d2d8ba;
font-size: 15px;
background: #33342d;
-webkit-font-smoothing: antialiased;
}
.node-dark a {
color: #639400;
}
.node-dark a:hover {
color: #85c700;
}
.node-dark h1,
.node-dark h2,
.node-dark h3,
.node-dark h4,
.node-dark h5 {
color: #eee;
}
.node-dark h2 {
border-bottom: 1px solid #4e4f45;
line-height: 1.7em;
}
.node-dark h6 {
color: #694f00;
}
.node-dark hr {
border: 1px solid #2b2c26;
}
.node-dark pre > code {
font-size: 1em;
}
.node-dark blockquote {
border-left: 4px solid #181915;
padding: 0 15px;
font-style: italic;
}
.node-dark table {
background-color: #3d3e36;
}
.node-dark table tr th,
.node-dark table tr td {
border: 1px solid #5f6154;
}
.node-dark table tr:nth-child(2n) {
background-color: #46483e;
}
/**
* after less
*/