carhop__carhop-theme__DEV/resources/css/layout/nav.css
Antoine M 83b8b4f53c
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Change on logo
2026-06-08 15:03:53 +02:00

47 lines
895 B
CSS

header {
@apply relative z-50;
}
.website_logo {
@apply w-60 h-auto relative;
.custom-logo {
@apply opacity-100;
transition: transform 0.3s ease-in-out;
}
#secondary-logo {
@apply absolute top-0 left-0 w-full h-auto;
@apply opacity-0;
transition: all 0.3s ease-in-out;
}
&:hover {
.custom-logo {
@apply opacity-0;
transition: all 0.3s ease-in-out;
transform: scale(1.03);
}
#secondary-logo {
@apply opacity-100 pointer-events-none;
transition: all 0.3s ease-in-out;
transform: scale(1.03);
}
}
}
.tools-container {
@apply flex-row items-center gap-4;
a,
button {
@apply flex flex-col items-center gap-4 text-lg;
&:hover {
@apply underline underline-offset-8 decoration-1;
}
img {
@apply filter-white w-6 h-6;
}
}
}