-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathprettify.css
More file actions
80 lines (67 loc) · 1.5 KB
/
prettify.css
File metadata and controls
80 lines (67 loc) · 1.5 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
78
79
80
.entry-content pre {
background-color: #f8f8f8;
border: 1px solid #eee;
overflow: hidden;
padding: 8px;
font-size: 12px;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
}
.entry-content pre.prettyprint {
margin-bottom: 20px
}
.entry-content pre code {
padding: 0;
color: inherit;
white-space: pre;
white-space: pre-wrap;
background-color: transparent;
border: 0
}
.prettyprint.linenums,pre.prettyprint.linenums {
overflow:auto;
-webkit-box-shadow: inset 40px 0 0 #eee,inset 42px 0 0 #33b796;
-moz-box-shadow: inset 40px 0 0 #eee,inset 42px 0 0 #33b796;
box-shadow: inset 40px 0 0 #eee,inset 42px 0 0 #33b796
}
.prettyprint.linenums ol,pre.prettyprint.linenums ol {
margin: 0 0 0 0px;
padding-left:35px;
}
.prettyprint.linenums ol li,pre.prettyprint.linenums ol li {
padding-left: 6px;
color: #bebec5;
line-height: 20px;
margin-left: 0;
list-style: decimal
}
.prettyprint.linenums ol li:before,pre.prettyprint.linenums ol li:before {
content: "";
width: 0
}
.prettyprint .com {
color: #666
}
.prettyprint .lit {
color: #c0c
}
.prettyprint .pun,.prettyprint .opn,.prettyprint .clo {
color: #0a0
}
.prettyprint .fun {
color: #dc322f
}
.prettyprint .str,.prettyprint .atv {
color: #333
}
.prettyprint .kwd,.prettyprint .tag {
color: #f92659
}
.prettyprint .typ,.prettyprint .atn,.prettyprint .dec,.prettyprint .var {
color: #0a0
}
.prettyprint .pln {
color: #00f
}