You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
website/public/styles/animations.css

20 lines
284 B

@keyframes slide {
from {
transform: translate(0, 0);
}
to {
transform: translate(0, 25%);
}
}
@keyframes grow {
from {
border-color: var(--color-colors-warning);
transform: scale(0);
}
to {
border-color: transparent;
transform: scale(3);
}
}