summaryrefslogtreecommitdiff
path: root/css/style.css
blob: 0216c8e70dbeb744c7c2e740db96bbd8a135c82a (plain) (blame)
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
/* Ensure sane defaults */

body {
  padding: 0;
  margin: 0;
}

/* Top-level layout */
#side {
  float: right;
}
#main {
  overflow: hidden;
}

#body, #main, #status, #side {
  min-height: 40px;
}

#body {
  min-width: 1350px;
}

#status {
  width: 100%;
  font-size: smaller;
}

#side {
  width: 650px;
  font-size: smaller;
}

/* Loadinfo panel */

#loadinfo {
  width: 647px;
/*   height: 400px; */
  border: 1px grey solid;
  margin: auto;
}

/* Hide charts while loadinfo is shown */

.chart-root {
  display: none;
  opacity: 0;
}

/* Loading bars */
.progressbar {
  margin: 10px 0;
  padding: 3px;
  border: 1px solid #000;
  font-size: 14px;
  clear: both;
  opacity: 0;
}

.progressbar.loading {
  opacity: 1.0;
}

.progressbar .percent {
  background-color: #99ccff;
  height: auto;
  width: 0;
  white-space: nowrap;
}

/* Utility */
.fader {
  -moz-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  -webkit-transition: opacity 1s linear;
}

.help {
  cursor: help;
}

.blob {
  background-color: #445566;
  height: 100px;
  width: 100px;
  float: left;
}