Files
hentai_manga_site/templates/static/css/manga_catalog.css
2025-03-31 04:13:06 +03:00

131 lines
2.2 KiB
CSS

/* Базовые стили */
body {
margin: 0;
padding: 0;
background: #f8f9fa;
font-family: Arial, sans-serif;
}
.catalog-container {
max-width: 50%;
margin: 0 auto;
padding: 20px;
}
/* Карточка манги */
.manga-item {
display: flex;
gap: 20px;
background: white;
border-radius: 8px;
overflow: hidden;
margin-bottom: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Контейнер для обложки и кнопки */
.manga-cover-container {
width: 200px;
flex-shrink: 0;
position: relative;
}
/* Изображение */
.manga-cover {
width: 100%;
height: 280px;
}
.manga-cover img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* Кнопка "Читать" поверх изображения */
.read-button {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 12px 0;
background: rgba(74, 137, 220, 0.9);
color: white;
text-align: center;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}
.read-button:hover {
background: rgba(59, 125, 216, 0.95);
}
/* Информация справа */
.manga-details {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.manga-title h3 {
margin: 0 0 8px 0;
color: #333;
font-size: 20px;
}
/* Теги под заголовком */
.tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 10px 0 15px 0;
}
.tag {
background: #f0f0f0;
padding: 4px 10px;
border-radius: 4px;
font-size: 14px;
color: #555;
}
/* Мета-информация внизу блока */
.manga-meta {
margin-top: auto;
}
.meta-item {
margin-bottom: 10px;
}
.meta-label {
font-weight: bold;
color: #555;
margin-right: 5px;
}
/* Адаптивность */
@media (max-width: 768px) {
.catalog-container {
max-width: 90%;
}
.manga-item {
flex-direction: column;
}
.manga-cover-container {
width: 100%;
}
.manga-cover {
height: 350px;
}
.manga-details {
padding: 15px;
}
}