copied the code from the working repo

This commit is contained in:
2024-11-30 16:00:48 +03:00
parent f22b92869b
commit 15ac0cb9b8
148 changed files with 23342 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
.container {
padding: 20px;
}
.form {
margin-bottom: 20px;
color: white;
}
.error {
color: red;
}
.item{
color:white;
}
.spin{
position:absolute;
left:50%;
top:50%;
transform: translate(-50%, -50%);
}
.cardWrapper {
display: flex;
flex-direction: column;
gap: 20px; /* Расстояние между карточками */
}
.card {
border: 1px solid #d9d9d9; /* Цвет и стиль обводки */
border-radius: 4px; /* Закругление углов */
padding: 16px; /* Отступы внутри карточки */
transition: box-shadow 0.3s; /* Плавный переход для теней */
&:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Тень при наведении */
}
}