-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (48 loc) · 903 Bytes
/
style.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
body {
background: linear-gradient(to bottom, #333333, #000000);
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
padding-top: 0%;
padding-bottom: 100%;
}
h1 {
color: white;
text-align: center;
margin-top: 50px;
}
table {
margin: auto;
border-collapse: collapse;
margin-top: 50px;
}
thead {
background-color: #CEE3F6;
color: black;
}
th, td {
padding: 10px;
text-align: center;
border: 1px solid white;
}
tr:nth-child(even) {
background: #848484;
}
.online {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: green;
}
.offline {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: red;
}
a {
color: white;
text-decoration: none;
}