МАОН первой серии
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
779B

  1. .центрирование-на-экране
  2. {
  3. position: absolute;
  4. left: 50%;
  5. top: 50%;
  6. transform: translateX(-50%) translateY(-50%);
  7. }
  8. .фон-экрана
  9. {
  10. background-color: white;
  11. position: fixed;
  12. left: 0;
  13. top: 0;
  14. right: 0;
  15. bottom: 0;
  16. }
  17. .анимированное-название-маджонга
  18. {
  19. animation: кадрыАнимацииНазванияМаджонга 2s infinite;
  20. }
  21. @keyframes кадрыАнимацииНазванияМаджонга {
  22. 0% {
  23. text-shadow: 0 0 0 white;
  24. }
  25. 30% {
  26. text-shadow: 0 0 1em black;
  27. }
  28. 45% {
  29. text-shadow: 0 0 0 white;
  30. }
  31. 60% {
  32. text-shadow: 0 0 1em black;
  33. }
  34. 70% {
  35. text-shadow: 0 0 0 white;
  36. }
  37. 100% {
  38. text-shadow: 0 0 0 white;
  39. }
  40. }