From e45746fdec973e08ff1621cf0c441a79ee71b6a4 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 6 Jul 2020 20:03:32 +0200 Subject: Initial implementation of a password prompt. --- src/ws/munia.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'src/ws/munia.css') 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; +} -- cgit v1.2.3