improve style
All checks were successful
/ Push website to server (push) Successful in 2m50s

This commit is contained in:
Daniella 2024-06-25 01:40:31 +02:00
parent ce44648fd0
commit 7058e8f03c
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
2 changed files with 6 additions and 3 deletions

View file

@ -37,13 +37,16 @@ form {
margin: 20px auto 20px auto; margin: 20px auto 20px auto;
width: fit-content; width: fit-content;
} }
label {
text-align: right;
display: block;
}
input { input {
height: 2em; height: 2em;
margin-bottom: 0.5em; margin-bottom: 0.5em;
border: 0; border: 0;
background-color: #000; background-color: #000;
color: #f0f; color: #f0f;
float: right;
} }
button { button {
background-color: #a0a; background-color: #a0a;

View file

@ -17,8 +17,8 @@
Please log in with your BaseBand account to continue. Please log in with your BaseBand account to continue.
<form method="POST"> <form method="POST">
<label>Username <input name=username type=username></label><br> <label>Username <input name=username type=username></label>
<label>Password <input name=password type=password></label><br> <label>Password <input name=password type=password></label>
<button type="submit">Log in!</button> <button type="submit">Log in!</button>
</form> </form>