-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (84 loc) · 2.43 KB
/
style.css
File metadata and controls
98 lines (84 loc) · 2.43 KB
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
/*
Document : style
Created on : 07-Jan-2011, 15:59:41
Author : jake
Description:
Purpose of the stylesheet follows.
*/
root {
display: block;
}
body {
font-family: arial, sans;
font-weight: bold;
background: #ffffff;
padding: 0;
margin: 0;
height: 100%;
margin: 0;
}
ul {
text-align: center;
margin: 10px;
list-style-type: none;
}
.job {
color: white;
font-size: 2.1em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
float: left;
margin: 1.3%;
width: 20%;
height: 90px;
padding: 10px;
border: 1px solid black;
-webkit-border-radius: .5em;
-moz-border-radius: .5em;
border-radius: .5em;
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,.4);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.4);
box-shadow: 0 3px 6px rgba(0,0,0,.4);
}
.blame {
font-weight: normal;
font-size: .8em;
}
.successful {
border: solid 1px #0076a3;
background: #0095cd;
background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
background: -moz-linear-gradient(top, #00adee, #0078a5);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.failed {
border: solid 1px #980c10;
background: #d81b21;
background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
background: -moz-linear-gradient(top, #ed1c24, #aa1317);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.unstable {
border: solid 1px #980c10;
background: #f19607;
background: -webkit-gradient(linear, left top, left bottom, from(#f3c639), to(#f19607));
background: -moz-linear-gradient(top, #f3c639, #f19607);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c639', endColorstr='#f19607');
}
.cancelled {
border: solid 1px #555;
background: #6e6e6e;
background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
background: -moz-linear-gradient(top, #888, #575757);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.disabled {
color: red;
border: solid 1px #555;
background: #6e6e6e;
background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
background: -moz-linear-gradient(top, #888, #575757);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}