.fade-in {
opacity: 0;
}
.fade-in.animate {
animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
} .slide-up {
opacity: 0;
transform: translateY(40px);
}
.slide-up.animate {
animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .slide-left {
opacity: 0;
transform: translateX(-40px);
}
.slide-left.animate {
animation: slideInLeft 0.6s ease forwards;
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-40px);
}
to {
opacity: 1;
transform: translateX(0);
}
} .zoom-in {
opacity: 0;
transform: scale(0.8);
}
.zoom-in.animate {
animation: zoomIn 0.5s ease forwards;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
} .bounce-in {
opacity: 0;
transform: scale(0.5);
}
.bounce-in.animate {
animation: bounceIn 0.8s ease forwards;
}
@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(0.5);
}
60% {
opacity: 1;
transform: scale(1.1);
}
80% {
transform: scale(0.95);
}
100% {
transform: scale(1);
}
} .flip-in {
opacity: 0;
transform: rotateY(90deg);
}
.flip-in.animate {
animation: flipIn 0.7s ease forwards;
}
@keyframes flipIn {
from {
opacity: 0;
transform: rotateY(90deg);
}
to {
opacity: 1;
transform: rotateY(0);
}
}a {
text-decoration-thickness: 1px !important;
text-underline-offset: .1em;
} :where(.wp-site-blocks *:focus) {
outline-width: 2px;
outline-style: solid;
} .wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
margin-bottom: 3px;
} .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
outline-offset: 4px;
} .wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
outline-offset: 0;
} h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
text-wrap: pretty;
} .more-link {
display: block;
}