5494
редагування
Admin (обговорення | внесок) Немає опису редагування |
Admin (обговорення | внесок) Немає опису редагування |
||
| Рядок 903: | Рядок 903: | ||
/* ==================================================== */ | /* ==================================================== */ | ||
/* | /* СЕКЦІЯ СТИЛІВ КАРТОК ГЕРОЇВ */ | ||
/* ==================================================== */ | /* ==================================================== */ | ||
| Рядок 942: | Рядок 942: | ||
color: white; | color: white; | ||
z-index: 2; | z-index: 2; | ||
overflow: hidden; | overflow: hidden; | ||
} | } | ||
/* ---------------------------------------------------- */ | /* ---------------------------------------------------- */ | ||
/* | /* ПОЗИЦІОНУВАННЯ ТА АНІМАЦІЯ ЗОБРАЖЕННЯ */ | ||
/* ---------------------------------------------------- */ | /* ---------------------------------------------------- */ | ||
/* 1. SPAN контейнер: позиціонування */ | |||
.mcc-hero-card .hero-image-wiki { | .mcc-hero-card .hero-image-wiki { | ||
position: absolute; | position: absolute; | ||
top: 0; | top: 0; | ||
left: 0; | left: 0; | ||
width: 100%; | |||
height: 100%; | |||
z-index: 0; | |||
overflow: hidden; | |||
} | |||
/* 2. IMG елемент: масштабування та ефекти */ | |||
.mcc-hero-card .hero-image-wiki img { | |||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
object-fit: cover; | object-fit: cover; | ||
transform: scale(1); | transform: scale(1); | ||
transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out, opacity 0.3s ease-in-out; | transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out, opacity 0.3s ease-in-out; | ||
| Рядок 964: | Рядок 970: | ||
/* Анімація при наведенні: стандартне збільшення зображення */ | /* Анімація при наведенні: стандартне збільшення зображення */ | ||
.mcc-hero-card:hover .hero-image-wiki { | .mcc-hero-card:hover .hero-image-wiki img { | ||
transform: scale(1.1); | transform: scale(1.1); | ||
} | } | ||
/* Градієнт | /* Градієнт */ | ||
.mcc-hero-link::after { | .mcc-hero-link::after { | ||
content: ''; | content: ''; | ||
| Рядок 976: | Рядок 982: | ||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.0) 50%); | background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.0) 50%); | ||
z-index: 1.5; | z-index: 1.5; | ||
| Рядок 1008: | Рядок 1013: | ||
} | } | ||
.mcc-hero-card:hover { | .mcc-hero-card:hover { | ||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); | box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); | ||
| Рядок 1014: | Рядок 1018: | ||
/* ==================================================== */ | /* ==================================================== */ | ||
/* СТИЛІ | /* СТИЛІ СТАНУ: БЕЗ СТОРІНКИ (.no-page-card) */ | ||
/* ==================================================== */ | /* ==================================================== */ | ||
.mcc-hero-card.no-page-card .hero-image-wiki { | .mcc-hero-card.no-page-card .hero-image-wiki img { | ||
filter: grayscale(100%); | filter: grayscale(100%); | ||
opacity: 0.7; | opacity: 0.7; | ||
} | } | ||
.mcc-hero-card.no-page-card .mcc-hero-link { | .mcc-hero-card.no-page-card .mcc-hero-link { | ||
cursor: default; | cursor: default; | ||
} | } | ||
.mcc-hero-card.no-page-card:hover .hero-image-wiki img { | |||
.mcc-hero-card.no-page-card:hover .hero-image-wiki { | transform: scale(1); | ||
transform: scale(1); | |||
} | } | ||
.mcc-hero-card.no-page-card:hover { | .mcc-hero-card.no-page-card:hover { | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); | ||
} | } | ||
/* ==================================================== */ | /* ==================================================== */ | ||
/* СТИЛІ | /* СТИЛІ СТАНУ: ЧЕМПІОН (.champion-card) */ | ||
/* ==================================================== */ | /* ==================================================== */ | ||
.mcc-hero-card .champion-card { | .mcc-hero-card .champion-card { | ||
border: 3px solid #FFD700; | border: 3px solid #FFD700; | ||
border-radius: 12px; | border-radius: 12px; | ||
| Рядок 1046: | Рядок 1048: | ||
} | } | ||
.mcc-hero-card:hover .champion-card .hero-image-wiki img { | |||
.mcc-hero-card:hover .champion-card .hero-image-wiki { | transform: scale(1.15); | ||
transform: scale(1.15); | |||
} | } | ||
.mcc-hero-card:hover .champion-card { | .mcc-hero-card:hover .champion-card { | ||
box-shadow: 0 0 25px rgba(255, 215, 0, 0.9); | box-shadow: 0 0 25px rgba(255, 215, 0, 0.9); | ||
} | } | ||