summaryrefslogtreecommitdiff
path: root/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/style.css')
-rw-r--r--css/style.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..4e1bdaa
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,62 @@
+/* Ensure sane defaults */
+
+body {
+ padding: 0;
+ margin: 0;
+}
+
+/* Top-level layout */
+#side {
+ float: right;
+}
+#main {
+ overflow: hidden;
+}
+
+#body, #main, #status, #side {
+ min-height: 40px;
+}
+
+#status {
+ width: 100%;
+ font-size: smaller;
+}
+
+#side {
+ width: 300px;
+ font-size: smaller;
+}
+
+/* Loadinfo panel */
+
+#loadinfo {
+ width: 647px;
+ height: 400px;
+ border: 3px grey solid;
+ margin: auto;
+}
+
+/* Loading bars */
+.progressbar {
+ margin: 10px 0;
+ padding: 3px;
+ border: 1px solid #000;
+ font-size: 14px;
+ clear: both;
+ opacity: 0;
+ /* TODO: Use d3 for transitions instead */
+ -moz-transition: opacity 1s linear;
+ -o-transition: opacity 1s linear;
+ -webkit-transition: opacity 1s linear;
+}
+
+.progressbar.loading {
+ opacity: 1.0;
+}
+
+.progressbar .percent {
+ background-color: #99ccff;
+ height: auto;
+ width: 0;
+ white-space: nowrap;
+}