40 lines
No EOL
633 B
CSS
40 lines
No EOL
633 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);
|
|
}
|
|
} |