muistox/static/css/muistox.css
2025-04-26 20:49:10 +03:00

50 lines
No EOL
777 B
CSS

body {
font: 400 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.uk-navbar-item,
.uk-navbar-nav>li>a,
.uk-navbar-toggle {
min-height: 50px;
}
.uk-align-center {
margin-top: 15px !important;
margin-bottom: 15px !important;
}
.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
margin: 0 10px 0 calc(10px - 4px);
}
.uk-blur img {
filter: blur(8px);
transform: scale(1.05);
transition: filter 0.5s ease, transform 0.5s ease;
}
.fade-in {
animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: scale(1.02);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.lazyfade {
opacity: 0;
transition: opacity 1s ease;
}
.lazyfade[loading="eager"],
.lazyfade[loading="lazy"]:not([src=""]) {
opacity: 1;
}