clearness.css
1.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*---------------------------------------------------
LESS Elements 0.9
---------------------------------------------------
A set of useful LESS mixins
More info at: http://lesselements.com
---------------------------------------------------*/
/**
* https://github.com/rhiokim/markdown-css
* solarized-light style
* made by rhio.kim
* powered by http://ethanschoonover.com/solarized
*/
.clearness {
padding: 20px;
color: #737373;
font-size: 15px;
background: #ffffff;
-webkit-font-smoothing: antialiased;
}
.clearness a {
color: #1e6ea7;
}
.clearness a:hover {
color: #268bd2;
}
.clearness h1,
.clearness h2,
.clearness h3,
.clearness h4,
.clearness h5 {
color: #404040;
}
.clearness h2 {
border-bottom: 1px solid #cccccc;
line-height: 1.7em;
}
.clearness h6 {
color: #666666;
}
.clearness hr {
border: 1px solid #e6e6e6;
}
.clearness pre > code {
font-size: .9em;
}
.clearness blockquote {
padding: 0 15px;
font-style: italic;
}
.clearness blockquote:before {
content: "\201C";
font-size: 40px;
margin-left: -20px;
color: #aaa;
}
.clearness table {
background-color: #ffffff;
border-collapse: separate;
border-spacing: 2px;
}
.clearness table tr th,
.clearness table tr td {
border: 0px;
padding: .2em 1em;
}
.clearness table tr th {
border-bottom: 1px solid #bfbfbf;
}
.clearness table tr td {
border-bottom: 1px solid #d9d9d9;
}
.clearness table tr:nth-child(2n) {
background-color: #ffffff;
}
/**
* after less
*/