-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme-1.css
118 lines (88 loc) · 1.74 KB
/
theme-1.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
/*
Color theme number 1
Library CSS prefix - my
*/
.my-highlight-show-as-pre-element {
font-family: monospace;
white-space: pre;
margin: 1em 0px;
}
.my-highlight-show-as-pre-element td{
white-space: pre;
}
.my-highlight-tag, .my-highlight-tag-html,
.my-highlight-tag-xml {
color : blue;
}
.my-highlight-attribute, .my-highlight-attribute-html,
.my-highlight-attribute-xml {
color : gray;
}
.my-highlight-javascript-operator {
color : gray;
}
.my-highlight-js-object {
color : navy;
}
.my-highlight-js-property {
color : navy;
}
.my-highlight-js-statement {
color : navy;
}
.my-highlight-dom-object {
color : blue;
}
.my-highlight-dom-property {
color : blue;
}
.my-highlight-string, .my-highlight-string-html,
.my-highlight-string-js, .my-highlight-string-xml {
color : green;
}
.my-highlight-semicolon {
color : navy;
}
.my-highlight-quotation {
color : gray;
}
.my-highlight-comment {
color : gray;
}
.my-line-background-color-1 {
background-color: #EFECFF;
}
.my-line-background-color-2 {
background-color: #f0e68c;
}
.my-highlighter {
}
/* space between cells */
.my-table-cell-spacing {
border-collapse : collapse;
line-height : 14px;
}
.my-table-left-column-numbers {
min-width : 40px;
padding-left : 15px;
}
.my-table-right-column-content {
padding-left : 15px;
}
/* middle column space formatter */
.my-table-left-column {
margin : 0px;
padding : 0px;
}
.my-columns-separator {
border-left: 2px dotted orange;
}
.my-even {
}
.my-odd {
}
/* for special purpose e.g. line spaces */
.my-special {
border-top: 5px solid white;
border-bottom: 5px solid white;
}