MediaWiki:Citizen.css: различия между версиями
Askell (обсуждение | вклад) Нет описания правки |
Askell (обсуждение | вклад) Нет описания правки |
||
(не показано 50 промежуточных версий этого же участника) | |||
Строка 923: | Строка 923: | ||
} | } | ||
.noclick a { | |||
pointer-events: none; | |||
cursor: default; | |||
} | |||
/* Контейнер для группы карточек */ | |||
.card-group { | |||
display: flex; /* Размещает карточки в строку */ | |||
gap: 10px; /* Отступы между карточками */ | |||
justify-content: center; /* Выравнивание карточек по центру */ | |||
align-items: stretch; /* Все карточки одинаковой высоты */ | |||
} | |||
.card { | .card { | ||
width: | position: relative; | ||
width: 350px; /* Фиксированная ширина карточки */ | |||
min-height: 150px; /* Минимальная высота для выравнивания */ | min-height: 150px; /* Минимальная высота для выравнивания */ | ||
background: # | background-color: #ffffff; | ||
border-radius: 10px; | |||
border-radius: | overflow: hidden; /* Скрываем все, что выходит за пределы */ | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Легкая тень */ | |||
box-shadow: 2px | |||
} | } | ||
.card-img-top { | |||
.card: | width: 100%; | ||
height: auto; | |||
} | } | ||
/* | /* Показываем подсказку при наведении */ | ||
.card-img-top::after { | |||
content: "Наведи сюда, чтобы узнать больше"; | |||
position: absolute; | |||
top: 50%; | |||
left: 50%; | |||
transform: translate(-50%, -50%); | |||
font-size: 18px; | |||
color: rgba(255, 255, 255, 0.8); /* Белый с прозрачностью */ | |||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Легкая тень */ | |||
font-weight: bold; | |||
opacity: 0; /* Скрыта по умолчанию */ | |||
transition: opacity 0.3s ease; /* Плавное изменение прозрачности */ | |||
} | |||
.card-body { | .card-body { | ||
padding: 15px; | |||
font-family: 'Arial', sans-serif; | |||
background-color: #f7f7f7; | |||
} | } | ||
.card-title { | .card-title { | ||
font-size: 20px; | |||
color: #212121; | |||
margin-bottom: 10px; | |||
} | |||
/* Плашка, которая появляется при наведении на картинку */ | |||
.card-hover-info { | |||
position: absolute; | |||
padding: 20px; | |||
top: 50%; | |||
left: 0; | |||
width: 100%; | |||
height: 50%; /* Половина карточки */ | |||
background: rgba(0, 0, 0, 0.6); /* Темная плашка с полупрозрачностью */ | |||
color: #ffffff; | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
align-items: center; | |||
opacity: 0; | |||
transition: opacity 0.3s ease, transform 0.3s ease; /* Плавное появление */ | |||
transform: translateY(-100%); /* Плашка будет скрыта */ | |||
border-radius: 0 0 10px 10px; /* Закругляем нижний край плашки */ | |||
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgb(0 0 0 / 0%)); /* Градиент для верхнего края */ | |||
} | |||
.card:hover .card-hover-info { | |||
opacity: 1; /* Плашка становится видимой */ | |||
transform: translateY(0); /* Плашка скользит сверху */ | |||
} | |||
.card-hover-info .label { | |||
font-weight: bold; | |||
font-size: 18px; | font-size: 18px; | ||
} | } | ||
.card-hover-info .value { | |||
.card- | font-size: 16px; | ||
font-size: | color: #ffffff; | ||
color: # | } | ||
.character-row { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 20px; | |||
} | |||
.character-card { | |||
position: relative; | |||
width: 200px; | |||
height: 300px; | |||
background-color: #222; | |||
color: white; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
text-align: center; | |||
font-family: sans-serif; | |||
box-shadow: 0 4px 10px rgba(0,0,0,0.4); | |||
} | |||
.character-image { | |||
width: 100%; | |||
height: 200px; | |||
overflow: hidden; | |||
padding: 0; | |||
margin: 0; | |||
} | |||
.character-img { | |||
width: 100% !important; | |||
height: 100% !important; | |||
object-fit: cover; | |||
display: block; | |||
} | |||
.character-name { | |||
font-size: 1.1em; | |||
font-weight: bold; | |||
padding: 8px 0; | |||
background-color: rgba(0, 0, 0, 0.7); | |||
} | |||
.character-overlay { | |||
position: absolute; | |||
bottom: -60px; | |||
left: 0; | |||
width: 100%; | |||
background-color: rgba(0,0,0,0.7); | |||
color: white; | |||
font-size: 0.9em; | |||
padding: 8px 5px; | |||
box-sizing: border-box; | |||
transition: bottom 0.3s ease; | |||
} | |||
.character-card:hover .character-overlay { | |||
bottom: 40px; | |||
} | } |