-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdarkTable.css
More file actions
38 lines (37 loc) · 788 Bytes
/
Copy pathdarkTable.css
File metadata and controls
38 lines (37 loc) · 788 Bytes
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
table.darkTable {
font-family: Arial, Helvetica, sans-serif;
border: 2px solid #000000;
background-color: #4A4A4A;
/* width: 100%; */
/* height: 200px; */
text-align: right;
border-collapse: collapse;
}
table.darkTable td, table.darkTable th {
border: 1px solid #4A4A4A;
padding: 4px 4px;
}
table.darkTable tbody td {
/* font-size: 10px; */
color: #E6E6E6;
}
table.darkTable tr:nth-child(even) {
background: #888888;
}
table.darkTable thead {
background: #000000;
border-bottom: 3px solid #000000;
}
table.darkTable thead th {
/* font-size: 12px; */
font-weight: bold;
color: #E6E6E6;
text-align: center;
border-left: 2px solid #4A4A4A;
}
table.darkTable thead th:first-child {
border-left: none;
}
table.darkTable tfoot td {
font-size: 10px;
}