forked from brendandburns/gcp-live-k8s-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathstyle.css
77 lines (64 loc) · 986 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
.wide {
width: 150px;
}
.service {
background-color: rgb(0,153,57);
color: white;
}
.controller {
background-color:rgb(51,105,232);
color: white;
}
.pod {
width: 100px;
background-color:#eeeeef;
}
.pending {
background-color:yellow;
}
.window {
line-height: 1em;
display: table;
}
.window span {
display: table-cell;
vertical-align: middle;
}
.logo {
background: url('titlelogo.svg');
background-repeat: no-repeat;
height: 150px;
width: 600px;
}
.navbar-logo {
margin-left: 10px;
margin-top: 5px;
text-align: left;
}
#nav-logo-img {
height: 42px;
}
.navbar {
position: absolute;
left: 0;
top: 0;
right: 0;
background-color: #447AE8;
border: 0px;
border-radius: 0;
}
.nodesbar {
position: absolute;
left: 0;
right: 0;
top: 50px;
height: 200px;
background-color: light-grey;
border-bottom: thick solid black;
}
.not_ready {
background-color: red;
}
.terminating {
background-color: red;
}