timeseparator.scss 387 B

12345678910111213141516171819202122232425262728
  1. .timeseparator {
  2. -webkit-animation: timeseparator 1s ease;
  3. animation: timeseparator 1s ease;
  4. }
  5. @-webkit-keyframes timeseparator {
  6. from {
  7. opacity: 1;
  8. }
  9. 50% {
  10. opacity: 0;
  11. }
  12. to {
  13. opacity: 1;
  14. }
  15. }
  16. @keyframes timeseparator {
  17. from {
  18. opacity: 1;
  19. }
  20. 50% {
  21. opacity: 0;
  22. }
  23. to {
  24. opacity: 1;
  25. }
  26. }