-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (144 loc) · 3.14 KB
/
style.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
137
138
139
140
141
142
143
144
table, td {
border-collapse: collapse;
border-spacing: 0;
vertical-align: baseline;
margin: 0;
}
section.layout .content {
width: 720px;
min-height: 100%;
}
section.layout .xpath-evaluator {
position: relative;
z-index: 2;
background: #fff;
border: 1px solid #b8b8b8;
border-radius: 5px 5px 0px 0px;
font-size: 14px;
line-height: 17px;
height: 643px;
overflow: hidden;
}
section.layout .xpath-evaluator .gutter,
section.layout .xpath-evaluator pre {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
font-size: 14px;
}
section.layout .xpath-evaluator .structure {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
overflow: auto;
color: #111;
}
section.layout .xpath-evaluator .structure table {
height: 643px;
}
section.layout .xpath-evaluator .structure .gutter {
background: #fbfbfb;
color: #c3c3c3;
text-align: right;
border-right: 1px solid #d2d2d2;
min-width: 18px;
padding: 5px 0px;
}
section.layout .xpath-evaluator .structure .gutter span {
position: relative;
display: block;
height: 17px;
padding-top: 1px;
padding-left: 13px;
padding-right: 7px;
}
section.layout .xpath-evaluator .structure .gutter span.ml {
background: #f1f1f1;
color: #9f9f9f;
}
section.layout .xpath-evaluator .structure .gutter span.ml:after {
content: '';
position: absolute;
top: 0px;
bottom: -1px;
right: -2px;
border-right: 3px solid #cc6;
}
section.layout .xpath-evaluator .structure .line-data {
padding: 5px 3px 5px 2px;
}
section.layout .xpath-evaluator .structure .line-data .line.ml .ml,
section.layout .xpath-evaluator .structure .line-data .line .mal {
-webkit-animation: 300ms wink;
-moz-animation: 300ms wink;
animation: 300ms wink;
}
section.layout .xpath-evaluator .structure .line-data .line span {
display: inline-block;
height: 17px;
}
section.layout .xpath-evaluator .structure .line-data .line .dc {
color: #666;
}
section.layout .xpath-evaluator .structure .line-data .line .p {
color: #30f;
}
section.layout .xpath-evaluator .structure .line-data .line .na {
color: #f00;
}
section.layout .xpath-evaluator .structure .line-data .line .s1 {
color: #d70;
}
section.layout .xpath-evaluator .structure .line-data .line .s2 {
color: #07c;
}
section.layout .xpath-evaluator .structure .line-data .line .s {
color: #30f;
}
section.layout .xpath-evaluator .structure .line-data .line .c {
color: #0a0;
}
section.layout .xpath-evaluator .structure .line-data .line .nt {
color: #a00;
}
section.layout .xpath-evaluator .structure .line-data .line .mal,
section.layout .xpath-evaluator .structure .line-data .line .ml {
background: #ffff99;
border-radius: 0px 2px 2px 0px;
}
section.layout .xpath-evaluator .structure .line-data .line .mal {
border-radius: 2px;
}
@-webkit-keyframes wink {
0% {
padding-left: 0px;
}
50% {
padding-left: 5px;
}
100% {
padding-left: 0px;
}
}
@-moz-keyframes wink {
0% {
padding-left: 0px;
}
50% {
padding-left: 5px;
}
100% {
padding-left: 0px;
}
}
@keyframes wink {
0% {
padding-left: 0px;
}
50% {
padding-left: 5px;
}
100% {
padding-left: 0px;
}
}