blob: 6d7b58065e2d899ddb6f9462748b1d0be97eb3c2 (
plain)
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
|
/* Copyright 2014 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
body {
margin: 10px 20px;
}
section {
margin-top: 40px;
}
table {
border: 1px solid gray;
border-spacing: 0;
margin-top: 15px;
width: 600px;
}
thead {
background-color: rgb(220, 240, 255);
font-weight: bold;
}
tbody {
border-top: 1px solid gray;
height: 200px;
overflow-x: hidden;
overflow-y: scroll;
}
td {
padding: 5px;
text-align: left;
}
td::first-letter {
text-transform: capitalize;
}
.confirmed,
.valid {
color: green;
}
.done {
color: darkGray;
}
.invalid {
color: red;
}
.directives td {
width: 190px;
}
.tokens td {
width: 140px;
}
table td.spacer {
width: 5px;
}
tbody,
thead > tr {
display: block;
}
|