Змінено директорії

Додано скрипти CRON
Поліпшено механізм запису стендів та їх редагування
This commit is contained in:
2025-10-27 00:11:18 +02:00
parent 1d9f9a1468
commit 04f39da611
196 changed files with 4962 additions and 4065 deletions

View File

@@ -98,14 +98,12 @@
content: "";
}
.page-stand-list summary {
width: calc(100% - 40px);
cursor: pointer;
color: var(--ColorThemes3);
border-radius: var(--border-radius);
font-size: var(--FontSize5);
font-weight: 300;
padding: 20px;
position: relative;
display: flex;
@@ -113,6 +111,11 @@
align-items: center;
}
.page-stand-list summary span {
font-weight: 500;
width: 100%;
}
.page-stand-list #list {
width: 100%;
margin: 0;
@@ -126,12 +129,37 @@
transition: .3s ease;
}
.page-stand-list #list>.mess-list {
height: 200px;
display: none;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.page-stand-list #list>.mess-list[data-visible="true"] {
display: flex;
}
.page-stand-list #list>.mess-list>svg {
width: 100px;
height: 100px;
fill: var(--ColorThemes3);
opacity: 0.7;
}
.page-stand-list #list>.mess-list>h3 {
font-size: var(--FontSize5);
color: var(--ColorThemes3);
opacity: 0.7;
}
.page-stand-list .card {
position: relative;
width: 300px;
height: 200px;
background-color: var(--ColorThemes2);
margin: 0px 10px 20px 10px;
margin: 10px;
overflow: hidden;
cursor: pointer;
border-radius: calc(var(--border-radius) - 5px);
@@ -196,7 +224,6 @@
.page-stand-list .card>.contents {
position: absolute;
z-index: 2;
background: rgb(64 64 64 / 0.7);
width: 100%;
height: 100%;
@@ -209,9 +236,30 @@
justify-content: space-between;
}
.page-stand-list .card>.contents>.image {
position: absolute;
width: 100%;
}
.page-stand-list .card>.contents>.image>img {
width: 100%;
height: 200px;
object-fit: cover;
filter: brightness(0.9) contrast(80%) saturate(110%) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
@media (prefers-color-scheme: dark) {
.page-stand-list .card>.contents>.image>img {
filter: brightness(0.6) contrast(80%) saturate(110%) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
}
.page-stand-list .card>.contents>.info {
width: calc(100% - 20px);
position: absolute;
bottom: 0;
margin: 10px;
display: flex;
}
.page-stand-list .card>.contents>.info>div {
@@ -226,6 +274,7 @@
border-radius: calc(var(--border-radius) - 5px - 4px);
position: relative;
overflow: hidden;
box-shadow: var(--shadow-l1);
}
.page-stand-list .card>.contents>.info>div>span {
@@ -241,4 +290,24 @@
font-weight: 400;
padding: 10px;
z-index: 2;
}
.page-stand-list .card>.contents>.info>.button-edit {
min-width: 35px;
height: 35px;
border-radius: calc(var(--border-radius) - 5px - 4px);
background: var(--PrimaryColor);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
margin-left: 10px;
z-index: 20;
box-shadow: var(--shadow-l1);
}
.page-stand-list .card>.contents>.info>.button-edit>svg {
width: 20px;
height: 20px;
fill: var(--PrimaryColorText);
}