1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Accidentally omitted from previous commit

This commit is contained in:
Jeremy Ruston 2012-10-15 18:45:36 +01:00
parent fd4ff10bf3
commit 5761723078

51
core/styles/pulse.css Normal file
View File

@ -0,0 +1,51 @@
@-webkit-keyframes pulse {
0% {background-color: #ffff80;}
100% {background-color: #ffffff;}
}
@-moz-keyframes pulse {
0% {background-color: #ffff80;}
100% {background-color: #ffffff;}
}
@-o-keyframes pulse {
0% {background-color: #ffff80;}
100% {background-color: #ffffff;}
}
@keyframes pulse {
0% {background-color: #ffff80;}
100% {background-color: #ffffff;}
}
.pulse {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-o-animation-name: pulse;
animation-name: pulse;
-webkit-animation-iteration-count: 5;
-moz-animation-iteration-count: 5;
-o-animation-iteration-count: 5;
animation-iteration-count: 5;
-webkit-animation-duration: 0.4s;
-moz-animation-duration: 0.4s;
-o-animation-duration: 0.4s;
animation-duration: 0.4s;
-webkit-animation-delay: 0s;
-moz-animation-delay: 0s;
-o-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-mode: ease-in-out;
-moz-animation-timing-mode: ease-in-out;
-o-animation-timing-mode: ease-in-out;
animation-timing-mode: ease-in-out;
-webkit-animation-direction: alternate;
-moz-animation-direction: alternate;
-o-animation-direction: alternate;
animation-direction: alternate;
}