diff options
| author | Bobby <[email protected]> | 2024-10-16 15:19:52 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-10-16 15:19:52 -0400 |
| commit | e71f872fd9220a4dfb794e1c91d8e8087002b937 (patch) | |
| tree | f9f9ed1638012365100b7ba3ddad3541a1fc0a99 /static/css/login-area.css | |
| parent | cf21403a416a2a0b21acaa3e27bc32a9618b859c (diff) | |
| download | thatcomputerscientist-e71f872fd9220a4dfb794e1c91d8e8087002b937.tar.xz thatcomputerscientist-e71f872fd9220a4dfb794e1c91d8e8087002b937.zip | |
i made the header and something extra
Diffstat (limited to 'static/css/login-area.css')
| -rw-r--r-- | static/css/login-area.css | 52 |
1 files changed, 30 insertions, 22 deletions
diff --git a/static/css/login-area.css b/static/css/login-area.css index a707919c..3d8b75ac 100644 --- a/static/css/login-area.css +++ b/static/css/login-area.css @@ -1,31 +1,38 @@ #login-area { - width: 250px; - height: 350px; - background: url("../images/backgrounds/login-area.png") no-repeat; - background-size: 250px 350px; + width: 200px; + height: 280px; + /* background: url("../images/core/sidebar/login-area.png") no-repeat; */ + background-image: image-set( + url("../images/core/sidebar/[email protected]") 1x, + url("../images/core/sidebar/[email protected]") 2x, + url("../images/core/sidebar/[email protected]") 3x + ); + background-repeat: no-repeat; + background-size: 200px 280px; margin: auto; padding: 0px; border: 0px; position: relative; + top: -65px; } #login-form { display: block; - padding-top: 151px; - padding-left: 20px; - padding-right: 20px; + position: relative; + top: 118px; } #login-form input[type="text"], #login-form input[type="password"] { display: block; - margin: 0px auto 18px auto; - width: 180px; - font-size: 12px; + margin: 10px auto; + width: 144px; + font-size: 11px; padding: 4px 8px; background: transparent; - color: #fff; + color: #4a2e6f; border-radius: 4px; + font-weight: bold; } /* Reset auto fill */ @@ -37,41 +44,42 @@ } #login-form input::placeholder { - color: #dcdcdc; + color: #4a2e6f; + font-weight: normal; } #login-form input[type="submit"] { - width: 131px; - height: 26px; + width: 106px; + height: 22px; cursor: pointer; position: absolute; - bottom: 55px; - left: 61px; + top: 96px; + left: 48px; border-radius: 2px; background: transparent; } #login-area > #register-now-button { display: block; - width: 60px; + width: 50px; height: 12px; cursor: pointer; border-radius: 2px; position: absolute; - bottom: 30px; - right: 40px; + bottom: 23px; + right: 32px; background: transparent; } #login-area > #forgot-password-button { display: block; - width: 80px; + width: 64px; height: 12px; cursor: pointer; border-radius: 2px; position: absolute; - bottom: 106px; - right: 26px; + bottom: 85px; + right: 21px; background: transparent; } |
