| 12345678910111213141516171819202122232425262728 |
- .timeseparator {
- -webkit-animation: timeseparator 1s ease;
- animation: timeseparator 1s ease;
- }
- @-webkit-keyframes timeseparator {
- from {
- opacity: 1;
- }
- 50% {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- @keyframes timeseparator {
- from {
- opacity: 1;
- }
- 50% {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
|