-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (64 loc) · 1009 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
* {
box-sizing: border-box;
}
.content-container {
background: rgb(214, 214, 243);
margin:10px;
height: 90vh;
}
.tablePage {
display: none;
width:100%;
}
.search {
border: 1px solid rgb(167, 166, 166);
border-radius: 4px;
padding: 8px 12px;
width: 90%;
max-width: 300px;
}
#result a {
text-decoration: none;
}
.tableContainer {
display: flex;
flex-direction: column;
}
table,
th,
td {
width: 80%;
background-color: rgb(248, 244, 244);
border-bottom: 1px solid rgb(219, 216, 216);
border-radius: 3px;
padding: 6px 2px;
margin: 5% auto;
text-align: left;
}
td {
white-space: nowrap;
}
.topnav a:hover {
border-bottom: 3px solid blue;
}
.topnav a.active {
border-bottom: 3px solid blue;
}
.topnav a{
color: black;
}
#showstrategy {
display: none;
}
.status-complete{
color: green;
}
.status-ongoing{
color: rgb(241, 179, 6);
}
.status-pending{
color: gray;
}
.status-failed{
color: red;
}