-
Notifications
You must be signed in to change notification settings - Fork 1
/
highlightJavascript.css
125 lines (115 loc) · 2.32 KB
/
highlightJavascript.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
@charset "utf-8";
pre {
background-color:rgba(238,238,238,0.9215);
margin:0;
overflow:auto;
}
ol {
list-style-type:decimal-leading-zero;
margin:0;
margin-left:4em;
margin-top:0!important;
margin-bottom:0!important;
padding:0;
display:inline-block;
max-width:97%;
background-color:rgba(238,238,238,0.9215);
white-space: pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: -moz-pre-wrap;
white-space: -hp-pre-wrap;
word-wrap: break-word;
}
ol li {
font-family: Consolas, "Courier New";
color:rgba(125, 125, 125, 0.95686);
background-color:rgba(238,238,238,0.9215);
}
ol li span {
font-family:Consolas, "Courier New";
color:black;
}
ol li.highlighted {
background-color:rgba(0,0,0,0.10196);
}
ol li span.comment {
color:#0066FF;
font-style: italic;
}
ol li span.string {
color:#009933;
}
ol li span.number {
color:#0066FF;
}
ol li span.native {
color:#0000FF;
font-weight:bold;
}
ol li span.constructs {
color:#0000FF;
}
ol li span.language {
color:#9700CC;
}
ol li span.reserved {
color:#000000;
font-weight: bold;
}
ol li span.constant {
color:#6782D3;
}
ol li span.function {
color:#FF8000;
}
ol li span.regex {
color:#FF0080;
}
::-webkit-scrollbar {
height:11px;
width:11px;
}
::-webkit-scrollbar-thumb {
box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
background-color:rgba(0,0,0,.2);
min-height:28px;
padding-top:100px;
}
::-webkit-scrollbar-thumb:hover {
box-shadow:inset 1px 1px 1px rgba(0,0,0,.25);
background-color:rgba(0,0,0,.4);
}
::-webkit-scrollbar-thumb:active {
box-shadow:inset 1px 1px 3px rgba(0,0,0,.35);
background-color:rgba(0,0,0,.5);
}
::-webkit-scrollbar-track {
background:rgba(0,0,0,0.05);
}
::-webkit-scrollbar-track:vertical {
border-top:1px solid #ddd;
border-bottom:1px solid #ddd;
}
::-webkit-scrollbar-track:horizontal {
border-left:1px solid #ddd;
border-right:1px solid #ddd;
}
::-webkit-scrollbar-thumb:vertical {
border-width:0;
border-left-width:0px;
border-right-width:0px;
}
::-webkit-scrollbar-thumb:horizontal {
border-width:0;
border-bottom:0px;
border-top:0px;
}
::-webkit-scrollbar-track:hover {
box-shadow:inset 1px 0 0 rgba(0,0,0,.1);
background-color:rgba(0,0,0,.05);
}
::-webkit-scrollbar-track:active {
box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.14);
background-color:rgba(0,0,0,.1);
}