-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhighlight.css
136 lines (136 loc) · 3.09 KB
/
highlight.css
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*https://github.com/chriskempson/tomorrow-theme*/
.post-container pre,
.post-container .highlight {
overflow: auto;
margin: 20px 0;
padding: 15px;
font-size: 13px;
color: #c5c8c6;
background: #1d1f21;
line-height: $line-height-code-block;
}
/*pre, code {
font-family: $code-font-family;
}*/
/*
.post-container code {
padding: 2px 4px;
word-break: break-all;
color: $code-foreground;
background: $code-background;
border-radius: $code-border-radius;
font-size $code-font-size;
}*/
.post-container pre code {
padding: 0;
color: #c5c8c6;
background: none;
text-shadow: none;
}
.post-container .highlight pre {
border: none;
margin: 0;
padding: 1px;
}
.post-container .highlight table {
margin: 0;
width: auto;
border: none;
}
.post-container .highlight td {
border: none !important;
padding: 0;
}
.post-container .highlight figcaption {
zoom: 1;
font-size: 1em;
color: #c5c8c6;
line-height: 1em;
margin-bottom: 1em;
}
.post-container .highlight figcaption:before,
.post-container .highlight figcaption:after {
content: "";
display: table;
}
.post-container .highlight figcaption:after {
clear: both;
}
.post-container .highlight figcaption a {
float: right;
color: #c5c8c6;
}
.post-container .highlight figcaption a:hover {
border-bottom-color: #c5c8c6;
}
.post-container .highlight .gutter pre {
color: #666;
text-align: right;
padding-right: 20px;
}
.post-container .highlight .line {
height: 20px;
}
.post-container .gist table {
width: auto;
}
.post-container .gist table td {
border: none;
}
.post-container pre .comment {
color: #969896;
}
.post-container pre .variable,
.post-container pre .attribute,
.post-container pre .tag,
.post-container pre .regexp,
.post-container pre .ruby .constant,
.post-container pre .xml .tag .title,
.post-container pre .xml .pi,
.post-container pre .xml .doctype,
.post-container pre .html .doctype,
.post-container pre .css .id,
.post-container pre .css .class,
.post-container pre .css .pseudo {
color: #c66;
}
.post-container pre .number,
.post-container pre .preprocessor,
.post-container pre .built_in,
.post-container pre .literal,
.post-container pre .params,
.post-container pre .constant,
.post-container pre .command {
color: #de935f;
}
.post-container pre .ruby .class .title,
.post-container pre .css .rules .attribute,
.post-container pre .string,
.post-container pre .value,
.post-container pre .inheritance,
.post-container pre .header,
.post-container pre .ruby .symbol,
.post-container pre .xml .cdata,
.post-container pre .special,
.post-container pre .number,
.post-container pre .formula {
color: #b5bd68;
}
.post-container pre .title,
.post-container pre .css .hexcolor {
color: #8abeb7;
}
.post-container pre .function,
.post-container pre .python .decorator,
.post-container pre .python .title,
.post-container pre .ruby .function .title,
.post-container pre .ruby .title .keyword,
.post-container pre .perl .sub,
.post-container pre .javascript .title,
.post-container pre .coffeescript .title {
color: #81a2be;
}
.post-container pre .keyword,
.post-container pre .javascript .function {
color: #b294bb;
}