diff options
| author | Bobby <[email protected]> | 2023-05-03 19:45:40 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-03 19:45:40 -0400 |
| commit | 2354324554dd448d4cf8fe5c8a2456648cf5859d (patch) | |
| tree | 2ee8de2af0c8723b5fbd3011d8252830fb293c78 /static/css/login-area.css | |
| parent | d2d08976fff53d88c24faf175cd8bba6785bde04 (diff) | |
| download | thatcomputerscientist-2354324554dd448d4cf8fe5c8a2456648cf5859d.tar.xz thatcomputerscientist-2354324554dd448d4cf8fe5c8a2456648cf5859d.zip | |
Generated a new login area
Diffstat (limited to 'static/css/login-area.css')
| -rw-r--r-- | static/css/login-area.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/static/css/login-area.css b/static/css/login-area.css new file mode 100644 index 00000000..15351174 --- /dev/null +++ b/static/css/login-area.css @@ -0,0 +1,55 @@ +#login-area { + width: 250px; + height: 350px; + background: url('../images/backgrounds/login-area.png') no-repeat; + background-size: 250px 350px; + margin: auto; + padding: 0px; + border: 0px; + position: relative; +} + +#login-form { + display: block; + padding-top: 151px; + padding-left: 20px; + padding-right: 20px; +} + +#login-form input[type=text], #login-form input[type=password] { + display: block; + margin: 0px auto 18px auto; + width: 180px; + font-size: 12px; + padding: 4px 8px; + background: transparent; + color: #54598E; + border-radius: 4px; +} + +#login-form input::placeholder { + color: #787dab; +} + +#login-form input[type=submit] { + width: 131px; + height: 26px; + cursor: pointer; + position: absolute; + bottom: 55px; + left: 61px; + border-radius: 2px; + background: transparent; +} + +#login-area > #register-now-button { + display: block; + width: 60px; + height: 12px; + cursor: pointer; + border-radius: 2px; + position: absolute; + bottom: 30px; + right: 40px; + background: transparent; +} |
