diff --git a/resources/css/blocks/sitemap.css b/resources/css/blocks/sitemap.css index 62e049a..ed8d9d3 100644 --- a/resources/css/blocks/sitemap.css +++ b/resources/css/blocks/sitemap.css @@ -1,4 +1,12 @@ .sitemap { + a:hover { + filter: none !important; + } + a[target='_blank']:after, + a[target='_blank']:after { + content: none; + display: hidden; + } h1.sitemap__title, h2, h3 { @@ -14,23 +22,68 @@ @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 text-center; + @apply list-none; + /* @apply text-center; */ a { - @apply flex flex-col items-center justify-center underline underline-offset-4; + @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; + @apply container px-0; } .sitemap__title {