_pageloader.scss 423 B

12345678910111213141516171819202122232425
  1. .page-loader-wrapper {
  2. z-index: 99999999;
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. bottom: 0;
  7. right: 0;
  8. width: 100%;
  9. height: 100%;
  10. background: #eee;
  11. overflow: hidden;
  12. text-align: center;
  13. p {
  14. font-size: 13px;
  15. margin-top: 10px;
  16. font-weight: bold;
  17. color: #444;
  18. }
  19. .loader {
  20. position: relative;
  21. top: calc(50% - 30px);
  22. }
  23. }