summaryrefslogtreecommitdiff
path: root/src/ws/munia.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/ws/munia.css')
-rw-r--r--src/ws/munia.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/ws/munia.css b/src/ws/munia.css
index c9d670c..2cd6c55 100644
--- a/src/ws/munia.css
+++ b/src/ws/munia.css
@@ -197,3 +197,39 @@ body
border-radius: 3px;
overflow: auto;
}
+
+/**
+ * Login prompt
+ */
+.login_overlay
+{
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ width: 100%;
+ height: 100%;
+ background-color:rgba(0, 0, 0, 0.5);
+}
+
+.login_box
+{
+ display: box;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ border: solid green 10px;
+ background: white;
+ opacity: 1;
+ width: 300px;
+ height: 200px;
+ border-radius: 12px;
+ padding: 30px;
+ -ms-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+}
+
+.login_box input
+{
+ width: 200px;
+ margin: auto;
+}