-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.css
110 lines (100 loc) · 1.65 KB
/
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
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
@charset "utf-8";
/* CSS Document */
table {
width: 80%;
color: #212424;
margin-left:auto;
margin-right:auto;
font: 80%/150% "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Lucida, Helvetica, sans-serif;
}
table, tr, th, td {
margin: 0;
padding: 0;
margin-left:auto;
margin-right:auto;
border-spacing: 0;
border-collapse: collapse;
}
caption {
width: 100%;
height: 39px;
font-size: 0;
line-height: 0;
text-indent: -5000em;
}
caption:hover {
background-position: 98% 100%;
}
/* HEADER */
thead {
background: #524123;
}
thead tr th {
padding: 1em 0;
text-align: center;
color: #FAF7D4;
border-bottom: 3px solid #A5D768;
}
/* FOOTER */
tfoot {
color: #fff;
background: #524123;
}
tfoot tr th, tfoot tr td {
padding: .2em .6em;
border-top: 2px solid #A5D768;
}
tfoot tr th {
}
tfoot tr td {
text-align: right;
}
/* BODY */
tbody tr td {
background: #DDF0BD no-repeat top left;
}
tbody tr.odd td {
background-color: #D0EBA6;
}
tbody tr td:hover, tbody tr.odd td:hover {
background: #c5e894;
}
tbody tr th, tbody tr td {
padding: 0.1em 0.4em;
border: 1px solid #a6ce39;
}
tbody tr th {
padding-right: 1em;
text-align: right;
font-weight: normal;
background: #c5e894 no-repeat top left;
text-transform: uppercase;
}
tbody tr th:hover {
background: #D0EBA6;
}
table a["Name"] {
float: left;
width: 64px;
height: 64px;
font-size: 0;
text-decoration: none;
}
table a[title^="Accuracy"] {
float: none;
width: auto;
height: auto;
font-size: 100%;
background: none;
}
/* LINKS */
table a {
color: #854400;
text-decoration: none;
}
table a:visited {
text-decoration: line-through;
}
table a:hover {
text-decoration: underline;
}