Make the GUI a library to support multiple platforms

This commit is contained in:
traxys 2023-08-07 17:27:11 +02:00
parent d3f89a8757
commit 0d900024cb
24 changed files with 76 additions and 39 deletions

33
web/public/login.css Normal file
View file

@ -0,0 +1,33 @@
html,
body,
#main {
height: 100%;
}
#main {
display: flex;
align-items: center;
padding-top: 40px;
padding-bottom: 40px;
}
.form-signin {
max-width: 330px;
padding: 15px;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
#floatingUser {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
#floatingPass {
margin-bottom: 10px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}