1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-01 18:13:32 +02:00
Files
nes.css/scss/utilities/animations.scss
2018-11-26 09:01:32 +09:00

10 lines
77 B
SCSS

@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
}