Files
hentai_manga_site/templates/static/css/style.css
Vinejar 2184ad7171 0_0_1
2025-03-30 02:59:20 +03:00

94 lines
1.5 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
.content-wrapper {
position: relative;
min-height: 500px;
}
.image-box {
display: none;
width: 100%;
text-align: center;
margin-bottom: 20px;
}
#mangaImage {
max-width: 100%;
max-height: 90vh;
object-fit: contain;
}
.manga-grid-container {
width: 90%;
margin: 0 auto;
}
.manga-grid {
display: grid;
grid-template-columns: repeat(9, 102px);
gap: 10px;
justify-content: center;
margin: 0 auto;
max-width: calc(6 * 102px + 5 * 10px);
}
.manga-preview {
width: 102px;
height: 142px;
overflow: hidden;
border-radius: 3px;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
background: #eee;
}
.manga-preview img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
cursor: pointer;
transition: transform 0.2s;
}
.manga-preview img:hover {
transform: scale(1.05);
}
.breadcrumb-item {
list-style: none;
display: flex;
align-items: center;
}
.breadcrumb-item a {
text-decoration: none;
color: green; /* Сохраняет цвет текста как у родителя */
font-weight: bold;
}
.breadcrumb-item .separator {
margin: 0 5px;
}
/* Адаптивность */
@media (max-width: 768px) {
.manga-grid {
grid-template-columns: repeat(4, 102px);
}
}
@media (max-width: 480px) {
.manga-grid {
grid-template-columns: repeat(3, 102px);
}
}
@media (max-width: 360px) {
.manga-grid {
grid-template-columns: repeat(2, 102px);
}
}