This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
validate.css
170 lines (140 loc) · 2.54 KB
/
validate.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
body {
font-family: sans-serif;
padding: 2em 10em;
}
/* Controls at the top */
form { margin: 20px 0; }
#form tr {
vertical-align: middle;
}
#form th {
text-align: right;
padding: 0.5em 0.5em;
}
/* Results */
#results {
margin-top: 1em;
padding: 0.3em 1em;
border: 1px solid rgb(100,100,100);
border-radius: 5px;
background: rgb(230,230,230);
box-shadow: 2px 2px 2px #888888;
overflow: auto;
font-family: Geneva, Tahoma, Verdana, sans-serif;
}
#results h2 {
font-size: 1.1em;
font-style: italic;
text-decoration: underline;
}
#results > div div {
margin: 0.6em;
}
.info {
/* color: rgb(198,165,142); */
color: rgb(132,110,95);
}
.warn {
color: #A33;
}
.error {
color: red;
}
#lint-container {
overflow-x: auto;
}
#lint {
color: red;
}
table.results {
border-collapse: collapse;
}
table.results th {
text-align: left;
}
table.results th,
table.results td {
border: 1px solid black;
padding: .2em;
}
/*
The following css rules are by syssgx (https://github.com/syssgx)
and are licensed CC-BY.
See https://github.com/syssgx/xml.js/blame/gh-pages/css/style.css.
*/
.files_wrapper {
margin-top: 5px;
padding: 10px;
border-radius: 5px;
border: 1px solid rgb(221,221,221);
transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
}
.files_wrapper:hover {
background: #ebebeb;
-moz-box-shadow: 0px 0px 3px black;
-webkit-box-shadow: 0px 0px 3px black;
box-shadow: 0px 0px 3px black;
}
.xmlarea_file {
border: 2px dashed rgb(221,221,221);
border-radius: 5px;
padding: 25px;
text-align: center;
font-size: 14px;
}
.xmlarea_file:hover {
border: 2px solid white;
}
.dropped {
background: #B9B9F4;
border: 2px solid #2222D3;
}
/* End CC-BY licensed code. */
/* Status */
#status {
margin-top: 5px;
padding: 10px;
border-radius: 5px;
border: 1px solid rgb(221,221,221);
letter-spacing: 0.1em;
}
.status-busy {
background-color: rgb(164,191,207);
font-style: italic;
}
.status-neutral {
background-color: rgb(164,191,207);
}
.status-good {
background-color: rgb(197,221,175);
}
.status-info {
background-color: rgb(198,165,142);
}
.status-warn {
background-color: rgb(200,110,110);
}
.status-error {
background-color: rgb(200,0,0);
color: white;
}
.xpath-display {
font-size: 0.7em;
}
.xpath-location {
color: blue;
display: none;
}
#listing-div {
margin-top: 2em;
max-height: 100em;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}