-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtable.css
63 lines (51 loc) · 947 Bytes
/
table.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
div#content {
padding-bottom: 20px;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
line-height: 1.7;
}
thead {
display: table-header-group;
color: #76b900
}
thead td {
font-family: Segoe UI, Lucida Sans, Lucida Sans Unicode, Arial Unicode MS, Arial, sans-serif;
text-shadow: 0 1px 2px black;
font-size: 1.17em;
font-weight: bold;
}
td, th {
border: 1px solid #dddddd;
text-align: center;
padding: 8px;
}
tbody td {
font-weight: bold;
}
tbody td:first-of-type {
text-align: left;
font-weight: unset;
}
td.zero {
color: #666;
font-weight: unset;
}
tbody tr.done {
color: #666;
}
tbody tr:nth-of-type(even) {
background-color: rgb(34, 34, 34);
}
tbody tr:hover {
background-color: rgba(125,205,0,0.5);
}
td a {
color: inherit;
display: block;
}
td:hover a {
text-decoration: underline;
}