Merge branch 'main' into Waybill

This commit is contained in:
2024-11-21 17:54:57 +03:00
52 changed files with 541 additions and 155 deletions

View File

@@ -1,4 +1,4 @@
h1,h2 {
h1, h2 {
text-align: center;
}
@@ -26,6 +26,11 @@ div.logout, div.login {
text-align: center;
}
div.buttons_menu{
text-align: center;
margin: 20px 0;
}
div.logout button {
margin-top: -5px;
background-color: #ff0000;
@@ -37,11 +42,12 @@ div.login button {
}
div.return {
display: flex;
justify-content: center;
display: flex;
justify-content: center;
margin-top: 15px;
}
div.return button{
div.return button {
background-color: chocolate;
}
@@ -50,4 +56,35 @@ div.form {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
text-align: center;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
div.form label {
display: block;
margin-bottom: 5px;
font-size: 16px;
font-weight: bold;
color: #333;
}
div.form select, div.form input[type=number] {
margin-bottom: 15px;
padding: 5px;
font-size: 14px;
width: 100%;
box-sizing: border-box;
}
div.form .period {
display: flex;
gap: 10px;
justify-content: center;
}
div.form button {
margin-top: 15px;
}