1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-22 13:52:48 +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;
}
}