Skip to content

Commit

Permalink
Update tuicss.css
Browse files Browse the repository at this point in the history
  • Loading branch information
maximoospital committed Jul 16, 2024
1 parent bdf5025 commit 0e0f3c5
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions assets/tuicss.css
Original file line number Diff line number Diff line change
Expand Up @@ -2801,13 +2801,31 @@ svg {
}

@-webkit-keyframes blink {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
0% {
background-color: white;
color: black;
}
50% {
background-color: black;
color: white;
}
100% {
background-color: white;
color: black;
}
}

@keyframes blink {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
0% {
background-color: white;
color: black;
}
50% {
background-color: black;
color: white;
}
100% {
background-color: white;
color: black;
}
}

0 comments on commit 0e0f3c5

Please sign in to comment.