summaryrefslogtreecommitdiffstats
path: root/style.css
blob: 9c7fac63b40738e1d579e13c1eb10c00a9100691 (plain)
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
html, body {
    background: #f8f8f8;
}
html, body, table {
    font-family: Verdana, "Trebuchet MS", "Lucida Grande", "Lucida Sans", Tahoma, Arial, sans-serif;
    color: #202020;
}
body { font-size: 80%; }

.clear { clear: both; }
table { 
    border-spacing: 0;
    float: left;
}
tr { padding: 0; margin: 0; }
th { padding: 0.2em 0.5em; margin: 0; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; text-align: left; font-size: 85%; color: #999; }
th:last-child { border-right: 0; }
td { padding: 0; margin: 0; padding: 0.2em 0.5em; border-bottom: 1px solid #ccc; vertical-align: top; }

tr { background: transparent; }
tr.uploaded { background: #ddffdd; }
tr.failure { background: #ffdddd; }
tr.rejected { background: #FFFFE0; }
tr.todo { background: white; }
tr.building { background: #ffff99; }
tr.partial { background: #bbbbff; }

td.status-box { width: 1em; height: 1em; }
tr.uploaded td.status-box { background: green; }
tr.failure td.status-box { background: red; }
tr.rejected td.status-box { background: orange; }
tr.todo td.status-box { background: white; }
tr.building td.status-box { background: yellow; }
tr.partial td.status-box { background: blue; }

td span.media,
td span.timeinfo { display: block; font-size: 85%; text-align: left; }

.timeinfo { font-size: 85%; text-align: right; color: #444444; }
.number, .percent { text-align: right; }

#stats { float: right; border-left: 1px solid #f0f0f0; }
#score { margin-bottom: 2em; font-family: Helvetica, Verdana, Arial, sans-serif; }
#score-box { width: 100px; height: 100px; background: #faa; }
#score-meter { width: 100px; background: #afa; }

.figure { font-size: 120%%; font-weight: bold; }

tr.build-files-list td { font-size: 85%; padding: 1em 0 2em 1em; color: #555; }
    tr.build-files-list td a { text-decoration: none; }
    tr.build-files-list td h4 { margin: 0 0 0.6em 0; }

.file-view {
    white-space: pre;
    resize: both;
    display: block;
    overflow: auto;
    box-shadow: 0 0 4px #303030;
    margin: 0.5em 0;
    width: 800px;
    height: 10em;
    background: #202020;
    color: #f0f0fa;
    padding: 0.5em 1em 1em 0.7em;
    font-family: "Andale Mono", "Courier New", fixed;
    position: relative;
}

.short .file-view {
    height: 1.5em;
    width: 500px;
}

.controls {
    float: right;
    display: block;
    text-align: right;
}
.short .controls { display: none; }

.gotobo, .gototop {
    margin-left: 0.5em;
    font-size: 90%;
}