МАОН первой серии
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.

48 lines
761B

  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. /* https://loading.io/css/ */
  18. .lds-dual-ring
  19. {
  20. display: inline-block;
  21. width: 80px;
  22. height: 80px;
  23. }
  24. .lds-dual-ring:after
  25. {
  26. content: " ";
  27. display: block;
  28. width: 64px;
  29. height: 64px;
  30. margin: 8px;
  31. border-radius: 50%;
  32. border: 3px solid black;
  33. border-color: black transparent black transparent;
  34. animation: lds-dual-ring 1.2s linear infinite;
  35. }
  36. @keyframes lds-dual-ring
  37. {
  38. 0%
  39. {
  40. transform: rotate(0deg);
  41. }
  42. 100%
  43. {
  44. transform: rotate(360deg);
  45. }
  46. }