Skip to content

Commit

Permalink
Blinky boy
Browse files Browse the repository at this point in the history
  • Loading branch information
PhiMarHal authored Nov 4, 2024
1 parent a67d571 commit 0af4c34
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,14 @@ body {
@keyframes fade {
0%, 100% { opacity: 0.3; }
50% { opacity: 1; }
}

@keyframes softBlink {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.word-pending {
color: white !important;
animation: softBlink 1.5s ease-in-out infinite;
}

0 comments on commit 0af4c34

Please sign in to comment.