1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 01:39:50 +02:00

👍 ラジオボタンを追加

This commit is contained in:
BcRikko
2018-09-25 08:11:41 +09:00
parent a0fc4e3633
commit 6941522121
8 changed files with 133 additions and 4 deletions

View File

@@ -3,3 +3,4 @@
@import "reset.scss";
@import "variables.scss";
@import "generic.scss";
@import "animation.scss";

9
scss/base/animation.scss Normal file
View File

@@ -0,0 +1,9 @@
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
}