-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (100 loc) · 1.86 KB
/
style.css
File metadata and controls
119 lines (100 loc) · 1.86 KB
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
111
112
113
114
115
116
117
118
119
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #121212;
color: #f1f1f1;
}
.filter-container {
margin-bottom: 20px;
}
table tr td:nth-child(4),
table th:nth-child(4) {
color: rgb(191, 18, 191);;
}
table tr td:nth-child(5),
table th:nth-child(5) {
color: gold;
}
table tr td:nth-child(6),
table th:nth-child(6) {
color: green;
}
table tr td:nth-child(7),
table th:nth-child(7) {
color: lightblue;
}
table tr td:nth-child(8),
table th:nth-child(8) {
color: red;
}
table tr td:nth-child(9),
table th:nth-child(9) {
color: orange;
border-right: 4px solid rgb(77, 77, 77);
}
table tr td:nth-child(11),
table th:nth-child(11) {
color: rgb(191, 18, 191);;
}
table tr td:nth-child(12),
table th:nth-child(12) {
color: gold;
}
table tr td:nth-child(13),
table th:nth-child(13) {
color: green;
}
table tr td:nth-child(14),
table th:nth-child(14) {
color: lightblue;
}
table tr td:nth-child(15),
table th:nth-child(15) {
color: red;
}
table tr td:nth-child(16),
table th:nth-child(16) {
color: orange;
}
table th, table td{
border: 1px solid rgba(196, 196, 196, 0.175);
}
table th{
background-color: rgb(57, 57, 57);
color: white;
}
table{
padding-top: 5px;
}
a{
color: gray;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
tbody tr:nth-child(even) {
background-color: #202020 !important;
}
#myTable_length label select{
background: #b2b2b2;
}
#myTable_filter label input{
background: #b2b2b2 !important;
}
#resetFilters{
background-color: #630000;
color: white;
padding: 10px 20px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
#resetFilters:hover{
background-color: #800000;
}
th.filtered {
background-color: #787878;
color: #000;
}