2023-04-14 22:20:42 +00:00
|
|
|
a[aria-current] {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2023-04-17 12:12:22 +00:00
|
|
|
.outlet {
|
|
|
|
border: 1px dotted grey;
|
|
|
|
}
|
|
|
|
|
2023-04-14 22:20:42 +00:00
|
|
|
.contact, .contact-list {
|
|
|
|
border: 1px solid #c0c0c0;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeIn {
|
|
|
|
animation: 0.5s fadeIn forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOut {
|
|
|
|
animation: 0.5s fadeOut forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOut {
|
|
|
|
from {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideIn {
|
2023-04-21 19:33:14 +00:00
|
|
|
animation: 0.25s slideIn forwards;
|
2023-04-14 22:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.slideOut {
|
2023-04-21 19:33:14 +00:00
|
|
|
animation: 0.25s slideOut forwards;
|
2023-04-14 22:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideIn {
|
|
|
|
from {
|
|
|
|
transform: translate(100vw, 0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: translate(0px, 0px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideOut {
|
|
|
|
from {
|
|
|
|
transform: translate(0px, 0px);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: translate(-100vw, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideInBack {
|
2023-04-21 19:33:14 +00:00
|
|
|
animation: 0.25s slideInBack forwards;
|
2023-04-14 22:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.slideOutBack {
|
2023-04-21 19:33:14 +00:00
|
|
|
animation: 0.25s slideOutBack forwards;
|
2023-04-14 22:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideInBack {
|
|
|
|
from {
|
|
|
|
transform: translate(-100vw, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: translate(0px, 0px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideOutBack {
|
|
|
|
from {
|
|
|
|
transform: translate(0px, 0px);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: translate(100vw, 0);
|
|
|
|
}
|
|
|
|
}
|