Subversion Repositories PEEPS

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 59
Line 3... Line 3...
3
	--medium-color: #45bdaa;
3
	--medium-color: #45bdaa;
4
	--light-color: rgba(0, 119, 189, .2);
4
	--light-color: rgba(0, 119, 189, .2);
5
    --highlight: rgba(0, 119, 189, .4);
5
    --highlight: rgba(0, 119, 189, .4);
6
	--hl-light: #ffff99;
6
	--hl-light: #ffff99;
7
	--hl-dark: #ffe699;
7
	--hl-dark: #ffe699;
-
 
8
	--good-lt: #00c13359;
-
 
9
	--good-dk: #00c1339c;
8
}
10
}
Line 9... Line 11...
9
 
11
 
10
body {
12
body {
11
	background-color: white;
13
	background-color: white;
Line 108... Line 110...
108
	padding: 10px;
110
	padding: 10px;
109
	border-radius: 5px 35px 5px 5px;
111
	border-radius: 5px 35px 5px 5px;
110
	margin-bottom: 4px;
112
	margin-bottom: 4px;
111
}
113
}
Line -... Line 114...
-
 
114
 
-
 
115
.pageheader h1 {
-
 
116
  font-size: 2em;
-
 
117
}
112
 
118
 
113
.sp0 {display:flex; max-width:875px;}
119
.sp0 {display:flex; max-width:875px;}
114
.spLeft {
120
.spLeft {
115
	float:left;
121
	float:left;
116
	display: flex;
122
	display: flex;
Line 120... Line 126...
120
 
126
 
121
.spRight {
127
.spRight {
122
	float:right;
128
	float:right;
123
	width:35%;
129
	width:35%;
124
	text-align:right;
130
	text-align:right;
-
 
131
/*	font-size: x-small; */
-
 
132
	font-size: 1em;
-
 
133
}
-
 
134
 
-
 
135
.spRight h1 {
-
 
136
  color: #122d61;  
125
	font-size: x-small;
137
  text-shadow: none;
Line 126... Line 138...
126
}
138
}
127
 
139
 
128
.autoload {
140
.autoload {
Line 199... Line 211...
199
 
211
 
200
button,
212
button,
201
input[type=button],
213
input[type=button],
202
input[type=reset],
214
input[type=reset],
203
input[type=submit] {
215
input[type=submit] {
204
	background-color: var(--medium-color);
216
	background-color: var(--dark-color);
205
	border: none;
217
	border: none;
206
	color: var(--dark-color);
218
	color: #fff;
207
	padding: 4px 16px;
219
	padding: 4px 16px;
208
	text-decoration: none;
220
	text-decoration: none;
209
	margin: 4px 2px;
221
	margin: 4px 2px;
210
	border-radius: 15px;
222
	border-radius: 15px;
211
	font-weight: bold;
223
	font-weight: normal;
212
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
224
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
213
	cursor: pointer;
225
	cursor: pointer;
214
	font-size: xx-small;
226
	font-size: 1em;
215
	vertical-align: middle;
227
	vertical-align: middle;
Line 216... Line 228...
216
}
228
}
217
 
229
 
Line 280... Line 292...
280
	font-weight: bold;
292
	font-weight: bold;
281
	color: crimson;
293
	color: crimson;
282
}
294
}
Line 283... Line 295...
283
 
295
 
284
.hint {
296
.hint {
285
	font-size: small;
297
	font-size: 1em;
286
	font-style: italic;
298
	font-style: italic;
-
 
299
	color: var(--dark-color);
287
	color: darkgray;
300
	margin-bottom: 0;
Line 288... Line 301...
288
}
301
}
289
 
302
 
290
.top {
303
.top {
Line 334... Line 347...
334
}
347
}
Line 335... Line 348...
335
 
348
 
336
.rTableCellr {
349
.rTableCellr {
337
	display: table-cell;
350
	display: table-cell;
338
	color: var(--dark-color);
351
	color: var(--dark-color);
339
	font-size: x-small;
352
	font-size: 1em;
340
	text-align: left;
353
	text-align: left;
341
	padding: 5px 12px;
354
	padding: 5px 12px;
342
}
355
}
343
.rTableCellr:first-child {
356
.rTableCellr:first-child {
Line 374... Line 387...
374
 
387
 
375
tr.highlighted {
388
tr.highlighted {
376
	background: var(--hl-light);
389
	background: var(--hl-light);
Line -... Line 390...
-
 
390
}
-
 
391
 
-
 
392
.highlighted-good {
-
 
393
	background-color: var(--good-lt);
-
 
394
}
-
 
395
 
-
 
396
.highlighted-good:hover {
-
 
397
  background-color: var(--good-dk);
-
 
398
}
-
 
399
 
-
 
400
tr.highlighted-good {
-
 
401
	background: var(--good-lt);
377
}
402
}
378
 
403
 
379
.filters {
404
.filters {
Line 380... Line 405...
380
	background-color: var(--medium-color);
405
	background-color: var(--medium-color);
Line 426... Line 451...
426
	white-space: nowrap;
451
	white-space: nowrap;
427
}
452
}
Line 428... Line 453...
428
 
453
 
429
td {
454
td {
430
	color: var(--dark-color);
455
	color: var(--dark-color);
431
	font-size: x-small;
456
	font-size: 1em;
432
	text-align: left;
457
	text-align: left;
Line 433... Line 458...
433
}
458
}
434
 
459