CesiumViewer.css 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import url(../../Source/Widgets/widgets.css);
  2. @import url(../../Source/Widgets/lighter.css);
  3. html {
  4. height: 100%;
  5. }
  6. body {
  7. height: 100%;
  8. width: 100%;
  9. margin: 0;
  10. overflow: hidden;
  11. padding: 0;
  12. background: #000;
  13. }
  14. .fullWindow {
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. height: 100%;
  19. width: 100%;
  20. margin: 0;
  21. overflow: hidden;
  22. padding: 0;
  23. font-family: sans-serif;
  24. }
  25. .loadingIndicator {
  26. display: block;
  27. position: absolute;
  28. top: 50%;
  29. left: 50%;
  30. margin-top: -33px;
  31. margin-left: -33px;
  32. width: 66px;
  33. height: 66px;
  34. background-position: center;
  35. background-repeat: no-repeat;
  36. background-image: url(Images/ajax-loader.gif);
  37. }