First commit of the new Insider version on docker

This commit is contained in:
2024-03-27 18:20:08 +01:00
parent 7637b068f9
commit be57c29e6e
61 changed files with 13693 additions and 1 deletions

54
public/css/auth.css Normal file
View File

@@ -0,0 +1,54 @@
body {
background-color: #36393f;
color: #ffffff;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.title-container {
margin-bottom: 20px;
}
.container {
width: 300px;
text-align: center;
}
.tittle {
font-size: 24px;
margin-bottom: 20px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
background-color: #40444b;
border: none;
color: #ffffff;
border-radius: 5px;
font-size: 16px;
}
button {
background-color: #7289da;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 16px;
margin: 0 auto;
display: block;
}
button:hover {
background-color: #677bc4;
}