-
Notifications
You must be signed in to change notification settings - Fork 1
/
code.css
109 lines (92 loc) · 1.74 KB
/
code.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
/* color scheme : http://www.colorschemer.com/online.html
* start color is: #1A9900
*/
body {
font-size: 12pt;
}
.key {
color: #001A99;
font-weight: bold;
}
.string {
color: #1A9900;
font-weight: bold;
}
.char {
color: #1A9900;
font-weight: bold;
}
.comment {
color: #ff0000;
font-weight: bold;
}
.basicType {
color: #800099;
font-weight: bold;
}
.javadoc {
color: #FF6633;
font-weight: bold;
}
.repl {
color: #000000;
font-weight: bold;
}
.xml {
color: #993300;
font-weight: bold;
}
.singleton {
color: #800099;
font-weight: bold;
}
.magic {
color: #800099;
font-weight: bold;
text-decoration: underline;
}
.annotation {
color: #C2C2C2;
font-weight: bold;
}
.type-param {
color: #B88A00;
font-weight: bold;
}
code {
font-family:"Consolas","Courier New",Courier,mono,serif;
color:#5C5C5C;
}
div.codelist {
display:block;
background-color:#C9C9C9;
margin:1em 0 1em 2em;
padding:0;
overflow: auto; /*--If the Code exceeds the width, a scrolling is available--*/
overflow-Y: hidden;
}
ol.codelist {
font-family:"Consolas","Courier New",Courier,mono,serif;
font-size:.8em;
list-style-image:none;
list-style-position:outside;
list-style-type:decimal;
margin:0 0 1px 45px !important;
padding:0;
border-top:thin solid #C9C9C9;
border-bottom:thin solid #C9C9C9;
}
li.codelist {
color:#5C5C5C;
border-left:3px solid #6CE26C;
line-height:14px;
list-style-image:none;
list-style-position:outside !important;
list-style-type:decimal;
margin:0 !important;
padding:0 3px 0 10px !important;
background-color:#F2FFE5;
}
li.alt {
background-color:#ffffff;
}