style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .container_nomount{
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. flex-direction: column;
  6. box-sizing: border-box;
  7. position: fixed;
  8. width: 100%;
  9. height: 100%;
  10. overflow: hidden;
  11. font-family: 'Poppins', sans-serif;
  12. }
  13. .container_nomount h2{
  14. margin-top: 20px;
  15. font-size: 1.5em;
  16. margin-block-start: 0.83em;
  17. margin-block-end: 0.83em;
  18. margin-inline-start: 0px;
  19. margin-inline-end: 0px;
  20. font-weight: bold;
  21. }
  22. .container_nomount .loading{
  23. width: 80px;
  24. height: 40px;
  25. margin: 0 auto;
  26. margin-top: -40px;
  27. }
  28. .container_nomount .loading span{
  29. display: inline-block;
  30. width: 8px;
  31. height: 100%;
  32. border-radius: 4px;
  33. background: #1890ff;
  34. animation: load 1s ease infinite;
  35. }
  36. @keyframes load{
  37. 0%,100%{
  38. height: 40px;
  39. background: #ff3378;
  40. }
  41. 50%{
  42. height: 70px;
  43. margin: -15px 0;
  44. background: #1890ff;
  45. }
  46. }
  47. .container_nomount .loading span:nth-child(2){
  48. animation-delay:0.2s;
  49. }
  50. .container_nomount .loading span:nth-child(3){
  51. animation-delay:0.4s;
  52. }
  53. .container_nomount .loading span:nth-child(4){
  54. animation-delay:0.6s;
  55. }
  56. .container_nomount .loading span:nth-child(5){
  57. animation-delay:0.8s;
  58. }