carhop__carhop-theme__DEV/resources/css/blocks/sitemap.css
2026-05-13 18:03:10 +02:00

92 lines
1.7 KiB
CSS

.sitemap {
a:hover {
filter: none !important;
}
a[target='_blank']:after,
a[target='_blank']:after {
content: none;
display: hidden;
}
h1.sitemap__title,
h2,
h3 {
color: var(---content-box-text-color) !important;
}
h1.sitemap__title {
@apply text-center uppercase tracking-widest mb-32;
}
h2.website-title {
@apply mb-4 !font-semibold !tracking-widest;
}
h3.menu-title {
@apply font-normal uppercase tracking-widest text-4xl;
}
ul,
li {
@apply !list-none;
}
ul {
@apply mt-12 grid md:grid-cols-2 lg:grid-cols-3 gap-12;
li {
@apply list-none;
/* @apply text-center; */
a {
@apply flex flex-col justify-center no-underline hover:underline underline-offset-4;
/* @apply items-center; */
}
}
}
.item-catalogue a,
.has-page-icon a,
.menu-item__submenu-toggle {
@apply flex flex-col justify-center gap-3 font-medium tracking-wide text-xl;
@apply items-start;
}
.menu-item__submenu-toggle {
@apply items-center;
}
.item-catalogue,
.has-page-icon {
a img,
.menu-item__submenu-toggle img {
transition: transform 0.4s ease-out;
}
a:hover img {
transform: scale(1.3);
}
&:hover {
.menu-item__submenu-toggle img {
transform: scale(1.3);
}
}
}
.sub-menu {
@apply !mt-4 block;
.menu-item__icon-img,
.page_icon,
.page_subtitle {
@apply hidden;
}
.menu-item__title {
@apply pb-0 !mb-0;
}
}
.website-menu-list {
@apply mb-32;
}
}
.sitemap__inner {
@apply container px-0;
}
.sitemap__title {
@apply text-2xl font-bold;
}