NXInspired/assets/css/keyframes.css
mctaylors a5faada17c
Make dialog height "dynamic"
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-05-03 23:36:42 +05:00

57 lines
No EOL
990 B
CSS

@keyframes hover-outline {
from {
outline-color: var(--light-blue);
}
to {
outline-color: var(--dark-blue);
}
}
@keyframes onload-background-blur {
from {
filter: blur(0) brightness(1);
}
99% {
filter: blur(0) brightness(1);
}
to {
filter: blur(16px) brightness(0.5);
}
}
@keyframes onload-dialog {
from {
opacity: 0;
width: var(--keyframe-show-dialog-width);
padding-bottom: var(--keyframe-show-dialog-padding-bottom);
}
80% {
opacity: 0;
width: var(--keyframe-show-dialog-width);
padding-bottom: var(--keyframe-show-dialog-padding-bottom);
}
to {
opacity: 1;
width: var(--dialog-width);
padding-bottom: var(--dialog-padding-bottom);
}
}
@keyframes onload-visibility {
from {
visibility: hidden;
}
99% {
visibility: hidden;
}
to {
visibility: visible;
}
}