modernizr.css 428 B

123456789101112131415161718192021222324
  1. /**before loading page completely
  2. *This only works with JavaScript,
  3. *if it's not present, don't show loader */
  4. .no-js #loader {
  5. display: none;
  6. }
  7. .js #loader {
  8. display: block;
  9. position: absolute;
  10. left: 100px;
  11. top: 0;
  12. }
  13. .se-pre-con {
  14. position: fixed;
  15. left: 0px;
  16. top: 0px;
  17. width: 100%;
  18. height: 100%;
  19. z-index: 9999;
  20. background: url(gif/Preloader_7.gif) center no-repeat #fff;
  21. }