style.css 395 B

123456789101112131415161718192021222324
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. overflow: hidden;
  5. padding: 0;
  6. margin: 0;
  7. }
  8. div#content{
  9. width: 100%;
  10. height: 100%;
  11. overflow: auto;
  12. }
  13. div#loading{
  14. width: 100%;
  15. height: 100%;
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. background-color: gray;
  20. background-color: rgba(0,0,0,0.5);
  21. background-image: url('../img/load.gif');
  22. background-repeat: no-repeat;
  23. background-position: center;
  24. }