summaryrefslogtreecommitdiff
path: root/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/style.css')
-rw-r--r--css/style.css41
1 files changed, 40 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css
index 0d2ec08..2690b1f 100644
--- a/css/style.css
+++ b/css/style.css
@@ -13,6 +13,19 @@ body {
overflow: hidden;
}
+#mask {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background-color: #333;
+ opacity: .8;
+ -moz-transition: opacity 1s linear;
+ -o-transition: opacity 1s linear;
+ -webkit-transition: opacity 1s linear;
+ transition: opacity 1s linear;
+ top: 0;
+}
+
body, #main, #status, .side {
min-height: 40px;
}
@@ -26,6 +39,8 @@ body {
font-size: smaller;
}
+/* Columns */
+
.med {
width: 400px;
}
@@ -34,16 +49,29 @@ body {
width: 250px;
}
-.side {
+#main, .side {
font-size: smaller;
}
+/* Titles */
+h3 {
+ margin: 0.3em 0.8em;
+}
+
/* Loadinfo panel */
#loadinfo {
+ position: absolute;
+ top: 0px;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
width: 647px;
+ height: 400px;
border: 1px grey solid;
margin: auto;
+ background-color: #fff;
+ padding: 20px;
}
/* Hide charts while loadinfo is shown */
@@ -83,11 +111,22 @@ body {
shape-rendering: crispEdges;
}
+/* User list */
+
+#users-status {
+ padding: 0;
+}
+
+#users-status li.user {
+ list-style: none;
+}
+
/* Utility */
.fader {
-moz-transition: opacity 1s linear;
-o-transition: opacity 1s linear;
-webkit-transition: opacity 1s linear;
+ transition: opacity 1s linear;
}
.help {