loading.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*:root {
  2. --main-color: #EE0033;
  3. --background-color-1: #eef5fb;
  4. --star-color: #ffc911;
  5. }*/
  6. /*:root {
  7. --main-color: #F36F21;
  8. --background-color-1: #eef5fb;
  9. --star-color: #ffc911;
  10. }*/
  11. :root {
  12. --main-color: #FF3211;
  13. --background-color-1: #eef5fb;
  14. --star-color: #ffc911;
  15. }
  16. #loading {
  17. width: 100%;
  18. height: 100%;
  19. top: 0px;
  20. left: 0px;
  21. position: fixed;
  22. display: block;
  23. opacity: 0.9;
  24. background-color: transparent;
  25. z-index: 99;
  26. text-align: center;
  27. }
  28. #loading-content {
  29. position: absolute;
  30. top: 50%;
  31. left: calc(50% - 40px);
  32. text-align: center;
  33. z-index: 100;
  34. }
  35. .loader {
  36. border: 5px solid #f3f3f3; /* Light grey */
  37. border-top: 5px solid var(--main-color); /* Blue */
  38. border-radius: 50%;
  39. width: 80px;
  40. height: 80px;
  41. animation: spin 1s linear infinite;
  42. }
  43. @keyframes spin {
  44. 0% {
  45. transform: rotate(0deg);
  46. }
  47. 100% {
  48. transform: rotate(360deg);
  49. }
  50. }
  51. .hide {
  52. display: none !important;
  53. }