]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - css/unrealircd-admin.css
Initial commit
[irc/unrealircd/unrealircd-webpanel.git] / css / unrealircd-admin.css
1 .unrealircd_overview {
2 font-family: arial, sans-serif;
3 border-collapse: collapse;
4 border-radius: 15px;
5 width: 25%;
6 }
7
8 td,
9 th {
10 border: 1px solid #000;
11 text-align: left;
12 padding: 8px;
13 }
14
15 tr:nth-child(even) {
16 background-color: #bec8d3;
17 }
18
19 * {
20 box-sizing: border-box;
21 }
22
23 .row {
24 display: flex;
25 }
26
27 .column {
28 flex: 50%;
29 padding: 5px;
30 }
31
32 .topnav {
33 background-color: #333;
34 overflow: hidden;
35 }
36
37 /* Style the links inside the navigation bar */
38 .topnav a {
39 float: left;
40 color: #f2f2f2;
41 text-align: center;
42 padding: 14px 16px;
43 text-decoration: none;
44 font-size: 17px;
45 }
46
47 /* Change the color of links on hover */
48 .topnav a:hover {
49 background-color: #ddd;
50 color: black;
51 }
52
53 /* Add a color to the active/current link */
54 .topnav a.active {
55 background-color: #4e50c2;
56 color: white;
57 }
58
59
60 [data-tab-content] {
61 display: none;
62 }
63
64 .active[data-tab-content] {
65 display: block;
66 }
67
68 .tab.active {
69 background-color: #AAA;
70 }
71
72 .tab:hover {
73 background-color: #AAA;
74 }