style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 .controls .next { background-image: url('img/btn_next.png'); }
  40. #iviewer .info {
  41. position: fixed;
  42. bottom: 0;
  43. width: 300px;
  44. left: 50%;
  45. margin-left: -150px;
  46. display: block;
  47. text-align:center;
  48. color: #ccc;
  49. font-size: 18px;
  50. padding: 0;
  51. z-index: 2;
  52. }
  53. #iviewer .info p {
  54. display:inline;
  55. vertical-align: top;
  56. }
  57. #iviewer .viewer {
  58. position: fixed;
  59. top: 0;
  60. left: 40px;
  61. z-index: 2;
  62. display: none;
  63. }
  64. #iviewer .loader {
  65. position: fixed;
  66. width: 100%;
  67. height: 100%;
  68. background: url('img/spinner.gif') no-repeat center center;
  69. z-index: 2;
  70. }