summaryrefslogtreecommitdiff
path: root/src/ws/munia.css
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-07-06 20:03:32 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2020-07-06 20:06:46 +0200
commite45746fdec973e08ff1621cf0c441a79ee71b6a4 (patch)
tree4d00f51a013ab099bd9d130c3eba6be1548803d5 /src/ws/munia.css
parent236983125ffb300bb68bd5d56107750118e5fe96 (diff)
Initial implementation of a password prompt.
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;
+}