blob: 1cfe90f0f44956172c595f78592d29f0e89dc93e (
plain) (
blame)
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
|
* {
box-sizing: border-box;
margin: 0em;
padding: 4px;
font-size: 10pt;
font-family: sans-serif;
color: #333;
background: lightgray;
}
.table-list {
list-style: none;
}
nav {
border-bottom: solid 3px #ccc;
}
a {
color: green;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a.admin-link {
font-size: 0.65rem;
}
table#home-summary-table {
margin-top: 1.2em;
background: white;
table-layout: fixed;
width: 100%;
border-collapse: collapse;
border: 2px solid gray;
}
table#home-summary-table td {
background: white;
border: 1px solid gray;
}
table#home-summary-table a,
table#home-summary-table ul
{
background: white;
}
table#home-summary-table thead th:nth-child(1) {
width: 10%;
}
table#home-summary-table thead th:nth-child(2) {
width: 6%;
}
table#home-summary-table thead th:nth-child(4) {
width: 10%;
}
table#home-summary-table thead th:nth-child(5) {
width: 10%;
}
table#home-summary-table thead th:nth-child(6) {
width: 5%;
}
table#home-summary-table thead th:nth-child(7) {
width: 5%;
}
table#home-summary-table th
{
/* border: solid 2px #ccc; */
background: lightgray;
font-weight: unset;
letter-spacing: 1px;
text-align: left;
}
table#home-summary-table li
{
background: white;
}
|