style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. #iviewer {
  6. position: fixed;
  7. width: 100%;
  8. height: 100%;
  9. top: 0;
  10. left: 0;
  11. background: url('img/bg_transblack.png');
  12. display: none;
  13. z-index: 1;
  14. }
  15. #iviewer .controls {
  16. position: fixed;
  17. top: 0;
  18. right: 0;
  19. width: 40px;
  20. }
  21. #iviewer .controls li {
  22. float: right;
  23. clear: right;
  24. position: relative;
  25. width: 40px;
  26. height: 40px;
  27. background-repeat: no-repeat;
  28. background-position: center center;
  29. display: block;
  30. cursor: pointer;
  31. z-index: 3;
  32. }
  33. #iviewer .controls:hover {
  34. cursor: pointer;
  35. }
  36. #iviewer .controls .close { background-image: url('img/btn_close.png'); }
  37. #iviewer .controls .zoomin { background-image: url('img/btn_zoomin.png'); }
  38. #iviewer .controls .zoomout { background-image: url('img/btn_zoomout.png'); }
  39. #iviewer .info {
  40. position: fixed;
  41. bottom: 0;
  42. width: 100%;
  43. text-align: center;
  44. color: #ccc;
  45. font-size: 16px;
  46. padding: 0;
  47. }
  48. #iviewer .viewer {
  49. position: fixed;
  50. top: 0;
  51. left: 40px;
  52. z-index: 2;
  53. display: none;
  54. }
  55. #iviewer .loader {
  56. position: fixed;
  57. width: 100%;
  58. height: 100%;
  59. background: url('img/spinner.gif') no-repeat center center;
  60. z-index: 2;
  61. }