forked from MythTV/mythweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.css
83 lines (81 loc) · 1.88 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
#content_wrapper {
margin-left: 15%;
margin-right: 15%;
}
h1 {
font-size: 28px;
font-weight: 900;
color: #ccc;
letter-spacing: 0.5em;
margin-bottom: 30px;
width: 70%;
text-align: center;
}
h2 {
font-size: 18px;
font-weight: 800;
color: #7c4;
border: none;
letter-spacing: 0.3em;
padding: 0px;
margin-bottom: 10px;
margin-top: 0px;
}
hr {
display:none;
}
div.content {
width: 90%;
/*border-top: 1px solid #88a;
border-right: 1px solid #88a;
border-bottom: 1px solid #88a;
border-left: 10px solid #88a;*/
border: 1px solid #333;
padding: 10px;
margin-bottom: 30px;
/* -moz-border-radius: 8px 0px 0px 8px; */
}
div.schedule a {
position: relative;
display: block;
color: white;
text-decoration: none;
padding: .2em .8em;
/*border: thin solid #555;
width: 340px;*/
}
div.schedule a span {
display:none;
}
div.schedule a:hover {
background-color: #444;
/*border-top: thin solid #668;
border-bottom: thin solid #668;
border-left: thin solid #668;*/
cursor: default;
}
div.schedule a:hover span {
display: block;
position: absolute;
background-color: #444;
color: #fff;
right: 1px;
margin-top: -20px;
width: 280px;
padding: 5px;
border: thin dashed black;
}
div.diskstatus {
/* width: 325px; */
height: 7em;
float: left;
}
div.loadstatus {
/* width: 325px; */
height: 7em;
float: right;
}
.jobfinished { color: white; }
.jobaborted { color: #ff2222; }
.joberrored { color: #ff4444; }
.jobrunning { color: #00ff00; }