feat: distributed styles

This commit is contained in:
2025-05-18 19:56:12 +02:00
parent afd5b588d6
commit 49432dcbe5
6 changed files with 232 additions and 80 deletions

63
static/css/login.css Normal file
View File

@ -0,0 +1,63 @@
@import "./ui.css";
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
align-items: center;
padding: 2rem;
position: relative;
background: #ffffff;
background: linear-gradient(0deg,rgba(255, 255, 255, 1) 90%, rgba(30, 144, 255, 1) 100%);
background-image: url(/static/overlay.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.modal-box {
background-color: white;
padding: 2rem;
border-radius: 8px;
border: 1px solid #ddd;
max-width: 400px;
width: 100%;
z-index: 1;
}
.modal-title {
font-size: 28px;
font-weight: 600;
margin-bottom: 5px;
}
.modal-description {
font-size: 16px;
font-weight: 400;
margin-bottom: 15px;
}
.form {
margin-top: 25px;
}
@media only screen and (max-width: 450px) {
.container {
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
min-width: 100vw;
}
.modal-box {
flex: 1;
width: 100vw;
min-width: 100vw;
height: 100vh;
padding: 20px;
padding-top: 50px;
}
}