Skip to content

Commit 85964af

Browse files
committed
Change admin colors
1 parent 13cfb36 commit 85964af

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed

admin.html

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,81 @@
11
<!doctype html>
22
<html lang="pt-PT">
33

4+
<style>
5+
/* Dark table styling */
6+
.table {
7+
background: transparent;
8+
color: rgba(255,255,255,0.92);
9+
}
10+
11+
.table thead {
12+
background: rgba(255,255,255,0.08);
13+
}
14+
15+
.table thead th {
16+
color: rgba(255,255,255,0.9);
17+
border-color: rgba(255,255,255,0.15);
18+
}
19+
20+
/* Dark table styling */
21+
.table {
22+
background: transparent;
23+
color: rgba(255,255,255,0.92);
24+
}
25+
26+
.table thead {
27+
background: rgba(255,255,255,0.08);
28+
}
29+
30+
.table thead th {
31+
color: rgba(255,255,255,0.9);
32+
border-color: rgba(255,255,255,0.15);
33+
}
34+
35+
.table tbody tr {
36+
background: rgba(255,255,255,0.04);
37+
}
38+
39+
.table tbody tr:nth-child(even) {
40+
background: rgba(255,255,255,0.06);
41+
}
42+
43+
.table td,
44+
.table th {
45+
border-color: rgba(255,255,255,0.12);
46+
color: rgba(255,255,255,0.92);
47+
}
48+
49+
/* Hover effect */
50+
.table.is-hoverable tbody tr:hover {
51+
background: rgba(197,164,193,0.18);
52+
}
53+
54+
/* Make email/notes readable */
55+
.table td {
56+
vertical-align: top;
57+
}
58+
.table tbody tr:nth-child(even) {
59+
background: rgba(255,255,255,0.06);
60+
}
61+
62+
.table td,
63+
.table th {
64+
border-color: rgba(255,255,255,0.12);
65+
color: rgba(255,255,255,0.92);
66+
}
67+
68+
/* Hover effect */
69+
.table.is-hoverable tbody tr:hover {
70+
background: rgba(197,164,193,0.18);
71+
}
72+
73+
/* Make email/notes readable */
74+
.table td {
75+
vertical-align: top;
76+
}
77+
</style>
78+
479
<head>
580
<meta charset="utf-8" />
681
<meta name="viewport" content="width=device-width, initial-scale=1" />

0 commit comments

Comments
 (0)