Add custom CSS for homepage layout and banner styling

This commit is contained in:
2025-07-04 00:39:46 +02:00
parent cc0c9e86b8
commit 037a6c5551
6 changed files with 724 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
body#index .page-home > .row {
display: grid;
gap:10px;
grid-template-columns: 1fr 1fr 1fr 1fr;
justify-content: center;
}
@media (max-width: 767px ) {
body#index .page-home > .row {
grid-template-columns: 1fr 1fr;
}
}
body#index .page-home > .row .an_banner {
width: 100% !important;
position: relative;
}
body#index .page-home > .row .an_banner img.b-loaded {
transition: 0s !important;
transform: unset !important;
}