-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
60 lines (50 loc) · 938 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
56
57
58
59
60
body {
margin: 0;
font-family: sans-serif;
background-color: white;
color: navy;
}
a, a:visited {
color: blue;
text-decoration: none;
}
a:hover, a:active {
color: red;
text-decoration: underline;
}
.tiny { font-size: x-small; }
table {
border-collapse: collapse;
}
tr { border: none; }
th { background-color: #eeeeff; }
td { border: grey 1px solid; }
td, th {
width: 18ex;
text-align: center;
padding: 3pt;
}
i {
color: grey;
font-size: small;
}
.success { color: #007700; }
.failure { color: #ff0000; }
.unstable { color: #d1a900; }
#loader-container {
display: flex;
flex-direction:row;
}
#loader {
margin-left: 10px;
border: 5px solid #f3f3f3; /* Light grey */
border-top: 5px solid #3b3939; /* Blue */
border-radius: 50%;
width: 10px;
height: 10px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}