This commit is contained in:
Vinejar
2025-03-30 03:51:35 +03:00
parent 9d4585f573
commit c634edd56d
3 changed files with 50 additions and 17 deletions

View File

@@ -1,7 +1,13 @@
/* Основные стили */
.content-wrapper {
position: relative;
min-height: 500px;
.centered-box {
width: 800px;
margin: 0 auto; /* Автоматические отступы по бокам */
background: #f0f0f0;
padding: 20px;
align-content: center;
}
.centered-box > *{
margin: 10px 15px;
}
.image-box {
@@ -24,7 +30,7 @@
.manga-grid {
display: grid;
grid-template-columns: repeat(6, 102px);
grid-template-columns: repeat(9, 102px);
gap: 10px;
justify-content: center;
margin: 0 auto;
@@ -53,6 +59,20 @@
transform: scale(1.05);
}
.breadcrumb {
font-weight: bold;
list-style: none;
text-decoration: none;
}
li.breadcrumb > a {
text-decoration: none !important;
color: green;
}
/* Адаптивность */
@media (max-width: 768px) {
.manga-grid {