login/register ui, add register to menu

This commit is contained in:
j 2023-08-21 12:18:23 +02:00
commit 7e4be4a233
4 changed files with 47 additions and 2 deletions

View file

@ -142,3 +142,31 @@ nav.overlay {
opacity: 0.8;
}
.login, .register {
margin-top: 16px;
margin-left: 24px;
textarea,
input {
padding: 4px;
margin-left: 0;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 4px;
background: none;
color: white;
border: 1px solid green;
}
button {
margin-top: 4px;
background: black;
color: white;
border: solid 1px green;
padding: 8px;
}
button:hover,
button:active {
border: solid 1px lightgreen;
cursor: pointer;
}
}