You are here

imagezoom.css in Image Zoom 7

div#zoom-img-wrapper {
  position: absolute;
  top: 0px;
  overflow: hidden;
  z-index: 1000;
}

div#zoom-img-wrapper.popup {
  left: 75%;
  width: 400px;
  height: 300px;
  border: 5px solid #000;
  background: #fff;
}

div#zoom-img-wrapper.inner {
  left: 0px;
}

img#zoom-img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: none;
}

a.imagezoom {
  cursor: crosshair;
}

ul.imagezoom-thumbs {
  padding: 0px;
}

div.imagezoom-thumb-wrapper .imagezoom-thumb-image {
  float: left;
  list-style: none;
  padding: 5px 5px 0px 0px;
}

.imagezoom-thumb-wrapper .imagezoom-thumb-hide {
  display: none;
}

.zoom-img-title {
  position: absolute;
  width: 100%;
  background: #000;
  color: #fff;
  padding-left: 5px;
}

File

css/imagezoom.css
View source
  1. div#zoom-img-wrapper {
  2. position: absolute;
  3. top: 0px;
  4. overflow: hidden;
  5. z-index: 1000;
  6. }
  7. div#zoom-img-wrapper.popup {
  8. left: 75%;
  9. width: 400px;
  10. height: 300px;
  11. border: 5px solid #000;
  12. background: #fff;
  13. }
  14. div#zoom-img-wrapper.inner {
  15. left: 0px;
  16. }
  17. img#zoom-img {
  18. position: absolute;
  19. top: 0px;
  20. left: 0px;
  21. max-width: none;
  22. }
  23. a.imagezoom {
  24. cursor: crosshair;
  25. }
  26. ul.imagezoom-thumbs {
  27. padding: 0px;
  28. }
  29. div.imagezoom-thumb-wrapper .imagezoom-thumb-image {
  30. float: left;
  31. list-style: none;
  32. padding: 5px 5px 0px 0px;
  33. }
  34. .imagezoom-thumb-wrapper .imagezoom-thumb-hide {
  35. display: none;
  36. }
  37. .zoom-img-title {
  38. position: absolute;
  39. width: 100%;
  40. background: #000;
  41. color: #fff;
  42. padding-left: 5px;
  43. }