Переключити меню
Toggle preferences menu
Переключити особисте меню
Ви не увійшли до системи
Ваша IP-адреса буде публічно видима, якщо Ви внесете будь-які редагування.
Немає опису редагування
Мітка: Скасовано
Немає опису редагування
Мітка: Скасовано
Рядок 50: Рядок 50:
/* Картки новин */
/* Картки новин */
.gallerybox {
.gallerybox {
border-radius:10px;
border-radius:12px;
overflow:hidden;
overflow:hidden;
transition:transform 0.25s ease, box-shadow 0.25s ease;
transition:all .25s ease;
background:#111;
}
}


.gallerybox img {
/* Картинка */
.gallerybox .thumb img {
width:100%;
width:100%;
height:200px;
height:180px;
object-fit:cover;
object-fit:cover;
transition:transform 0.25s ease;
transition:transform .3s ease;
}
}


/* Ефект при наведенні */
/* Ефект наведення */
.gallerybox:hover {
.gallerybox:hover {
transform:scale(1.05);
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.35);
box-shadow:0 12px 30px rgba(0,0,0,0.4);
}
}


.gallerybox:hover img {
.gallerybox:hover .thumb img {
transform:scale(1.1);
transform:scale(1.1);
}
}

Версія за 14:01, 5 березня 2026

/* Прибрати блок "Остання зміна" */
#footer-info-lastmod {
    display: none !important;
}

/* Прибрати авторські права */
#footer-info-copyright {
    display: none !important;
}

/* Якщо Citizen рендерить все через footer-info */
#footer-info {
    display: none !important;
}

:root {
    --citizen-accent-color: #bfa14a; /* золото */
    --citizen-background-color: #0d0e12;
}

/* Ховаємо текст */
#n-donate a {
    font-size: 0;
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
}

/* Малюємо іконку */
#n-donate a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    background-image: url("https://graprestoliv.com.ua/images/5/53/Free-icon-donate-931171.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.gallerybox img {
width:100%;
height:180px;
object-fit:cover;
}

/* Картки новин */
.gallerybox {
border-radius:12px;
overflow:hidden;
transition:all .25s ease;
background:#111;
}

/* Картинка */
.gallerybox .thumb img {
width:100%;
height:180px;
object-fit:cover;
transition:transform .3s ease;
}

/* Ефект наведення */
.gallerybox:hover {
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.4);
}

.gallerybox:hover .thumb img {
transform:scale(1.1);
}