-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstatus.css
executable file
·138 lines (124 loc) · 2.53 KB
/
status.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,600,600italic);
:root {
--box-width: 1150px;
}
body {
font: 16px 'Source Sans Pro','Helvetica Neue',Helvetica,Tahoma,sans-serif;
background-color: #eee;
}
#outer {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
#head {
width: calc(var(--box-width) - 20px); /* 20px for the padding */
font-size: 28px;
font-weight: bold;
color: white;
padding-top: 8px;
padding-bottom: 10px;
padding-left: 30px;
padding-right: 10px;
margin: auto;
background-color: SteelBlue;
border: 1px solid SteelBlue;
}
#main {
width: var(--box-width);
margin: auto;
display: flex;
padding: 10px;
background-color: #d3d8de;
border: 1px solid SteelBlue;
}
#monitor,
#monitor-frame {
width: 730px;
height: 680px;
border: none;
margin-left: 7px;
background-color: #d3d8de;
}
#console {
width: var(--box-width);
margin: auto;
}
#footer {
width: var(--box-width);
margin: auto;
}
.monitor-link{
color: SteelBlue;
cursor: pointer;
}
.job-container {
table-layout: fixed;
border-collapse: collapse;
font-size: 14px;
border: 1px solid MidnightBlue;
width: 400px;
margin-bottom: 10px;
}
.job-container tbody tr:nth-child(odd) {
background: #ccc;
}
.job-container tbody tr:nth-child(even) {
background: #eee;
}
.job-container tbody tr:nth-child(1) {
background-color: SteelBlue;
color: #d3d8de;
}
.job-container tbody tr td {
padding: 3px 5px 3px 5px;
}
.job-container tbody tr td:nth-child(1) {
width: 140px;
}
.job-container tbody tr td:nth-child(2) {
width: 240px;
}
.full-bar {
background-color: LightSteelBlue;
color: MidnightBlue;
width: 370px;
}
.current-bar {
background-color: MidnightBlue;
color: LightSteelBlue;
}
.progress-bar { /* Common to both current and full bars */
height: 18px;
position: absolute;
top: -10px;
left: 10px;
text-align: center;
overflow: hidden;
border: 1px solid MidnightBlue;
}
.progress-digits { /* Progress information */
width: 370px;
padding: 0px;
}
.holder { /* This is anchor */
position: absolute;
}
.progress { /* This is the container */
height: 20px;
width:400px;
}
.red {
color: maroon;
}
.green {
color: darkgreen;
}
.blue {
color: darkblue;
}
.bold {
font-weight: bold;
}