78 lines
1.3 KiB
CSS
78 lines
1.3 KiB
CSS
/* Основные стили */
|
|
.main-container {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Навигационная цепочка */
|
|
.breadcrumb {
|
|
display: flex;
|
|
align-items: center;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 20px 0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.breadcrumb span {
|
|
margin: 0 5px;
|
|
color: #666;
|
|
}
|
|
|
|
/* Сетка превью */
|
|
.manga-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
|
gap: 15px;
|
|
}
|
|
|
|
.manga-preview {
|
|
width: 100px;
|
|
height: 140px;
|
|
overflow: hidden;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.manga-preview img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.manga-preview:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* Страница манги */
|
|
.image-navigation-container {
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.image-box img {
|
|
max-width: 100%;
|
|
max-height: 80vh;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.page-navigation {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.nav-button {
|
|
padding: 8px 15px;
|
|
background: #f0f0f0;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
color: #333;
|
|
}
|
|
|
|
.nav-button:hover {
|
|
background: #e0e0e0;
|
|
} |