From c0bd4e25dc6d1dbbe76cb88c36d74b621dbdb58c Mon Sep 17 00:00:00 2001 From: Bobby Date: Sun, 3 Nov 2024 19:00:29 -0500 Subject: =?UTF-8?q?stuff=20still=20all=20over=20the=20place;=20added=20a?= =?UTF-8?q?=20music=20player=20and=20a=20resolution=20based=20scaler=20?= =?UTF-8?q?=E2=80=94=20now=20in=20a=20brainfucked=20stated=20-=20going=20t?= =?UTF-8?q?o=20sleep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/css/shared/login-area.css | 96 ++++++++++++++++++++++++---------------- 1 file changed, 58 insertions(+), 38 deletions(-) (limited to 'static/css/shared/login-area.css') diff --git a/static/css/shared/login-area.css b/static/css/shared/login-area.css index 4fd5331c..680e95c3 100644 --- a/static/css/shared/login-area.css +++ b/static/css/shared/login-area.css @@ -1,15 +1,17 @@ +/* Login Area Container */ #login-area { width: 200px; height: 280px; - background-repeat: no-repeat; - background-size: 200px 280px; - margin: auto; - padding: 0px; - border: 0px; position: relative; top: -65px; + margin: auto; + background-repeat: no-repeat; + background-size: 200px 280px; + padding: 0; + border: 0; } +/* Login Form */ #login-form { display: block; position: relative; @@ -19,22 +21,14 @@ #login-form input[type="text"], #login-form input[type="password"] { display: block; - margin: 10px auto; width: 144px; - font-size: 11px; + margin: 10px auto; padding: 4px 8px; - background: transparent; + font-size: 11px; + font-weight: bold; color: #4a2e6f; + background: transparent; border-radius: 4px; - font-weight: bold; -} - -/* Reset auto fill */ -#login-form input:-webkit-autofill, -#login-form input:-webkit-autofill:hover, -#login-form input:-webkit-autofill:focus, -#login-form input:-webkit-autofill:active { - transition: background-color 1s ease-in 2000s; } #login-form input::placeholder { @@ -43,52 +37,78 @@ } #login-form input[type="submit"] { - width: 106px; - height: 22px; - cursor: pointer; position: absolute; top: 96px; left: 48px; - border-radius: 2px; + width: 106px; + height: 22px; background: transparent; + border-radius: 2px; + cursor: pointer; } +/* Autofill Override */ +#login-form input:-webkit-autofill, +#login-form input:-webkit-autofill:hover, +#login-form input:-webkit-autofill:focus, +#login-form input:-webkit-autofill:active { + transition: background-color 1s ease-in 2000s; +} + +/* Error Messages */ #login-error { position: relative; } -#login-error > .RFEERR { +#login-error>.messageBox { + position: absolute; + top: -100px; + left: -140px; + z-index: 2; + width: 250px; + height: 166px; + background-size: 250px 166px; +} + +#login-error>.RFEERR { background: url("../images/backgrounds/login-messages/RFEERR.png") no-repeat; } -#login-error > .IUOPERR { +#login-error>.IUOPERR { background: url("../images/backgrounds/login-messages/IUOPERR.png") no-repeat; } -#login-error > .ENVERR { +#login-error>.ENVERR { background: url("../images/backgrounds/login-messages/ENVERR.png") no-repeat; } -#login-error > .VESENDERR { - background: url("../images/backgrounds/login-messages/VESENDERR.png") - no-repeat; +#login-error>.VESENDERR { + background: url("../images/backgrounds/login-messages/VESENDERR.png") no-repeat; } -#login-error > .VESENT { +#login-error>.VESENT { background: url("../images/backgrounds/login-messages/VESENT.png") no-repeat; } -#login-error > .VESUCCESS { - background: url("../images/backgrounds/login-messages/VESUCCESS.png") - no-repeat; +#login-error>.VESUCCESS { + background: url("../images/backgrounds/login-messages/VESUCCESS.png") no-repeat; } -#login-error > .messageBox { +/* Login Area Button Styles */ +#login-area>#register-now-button, +#login-area>#forgot-password-button { + display: block; + height: 12px; + cursor: pointer; + border-radius: 2px; position: absolute; - background-size: 250px 166px; - width: 250px; - height: 166px; - top: -100px; - left: -140px; - z-index: 2; + background: transparent; } + +#login-area>#register-now-button { + bottom: 23px; +} + +#login-area>#forgot-password-button { + bottom: 85px; +} \ No newline at end of file -- cgit v1.2.3