Advertisement
Guest User

imagezoom[2] - magiczoom.css

a guest
Jun 14th, 2015
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.47 KB | None | 0 0
  1. /*
  2.  
  3.  
  4.    Magic Zoom v4.0.3
  5.    Copyright 2011 Magic Toolbox
  6.    Buy a license: www.magictoolbox.com/magiczoom/
  7.    License agreement: http://www.magictoolbox.com/license/
  8.  
  9.  
  10. */
  11.  
  12. /* Style of the main image */
  13. .MagicZoom img {
  14. border: 0 !important;
  15. padding: 0 !important;
  16. margin: 0 !important;
  17. }
  18.  
  19. /* tyle of the hint text and image */
  20. .MagicZoomHint {
  21. background: url(graphics/hint.gif) no-repeat 2px 50%;
  22. padding: 2px 2px 2px 20px !important;
  23. min-height: 24px;
  24. margin: 0;
  25. text-decoration: none;
  26. text-align: left;
  27. font-size: 8pt;
  28. font-family: sans-serif;
  29. color: #444;
  30. }
  31.  
  32. /* Style to hide external title on a page. Only needed for #id method */
  33. .MagicZoomExternalTitle {
  34. display: none;
  35. }
  36.  
  37. /* Style of the zoomed image */
  38. .MagicZoomBigImageCont {
  39. /*
  40. border: 1px solid #999;
  41. */
  42. border: 2px solid #000;
  43. }
  44.  
  45. /* Style of text on the zoomed image */
  46. .MagicZoomHeader {
  47. font-size: 10pt !important;
  48. line-height: normal !important;
  49. color: #fff;
  50. background: #666;
  51. text-align: center !important;
  52. /* kerfoot */
  53. border-bottom: #000 solid 2px;
  54. font-weight: bold;
  55. }
  56.  
  57. /* Style of square magnify area under the cursor */
  58. .MagicZoomPup {
  59. /*
  60. border: 1px solid #aaa;
  61. */
  62. border: 2px solid #000;
  63. background: #fff;
  64. cursor: move;
  65. }
  66.  
  67. /* Style of loading message and icon shown during load */
  68. .MagicZoomLoading {
  69. border: 1px solid #ccc;
  70. background: #fff url(graphics/loader.gif) no-repeat 2px 50%;
  71. padding: 4px 4px 4px 24px !important;
  72. margin: 0;
  73. text-decoration: none;
  74. text-align: left;
  75. line-height: 1.5em;
  76. font-size: 8pt;
  77. font-family: sans-serif;
  78. color: #444;
  79. }
  80.  
  81. /* Style of shadow effect behind zoomed image */
  82. .MagicBoxShadow {
  83. -moz-box-shadow: 3px 3px 4px #888888;
  84. -webkit-box-shadow: 3px 3px 4px #888888;
  85. box-shadow: 3px 3px 4px #888888;
  86. border-collapse: separate;
  87. /* For IE 5.5 - 7 */
  88. filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#888888') !important;
  89. /* For IE 8 */
  90. -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#888888')" !important;
  91. }
  92.  
  93. /* Style of glow effect behind zoomed image */
  94. .MagicBoxGlow {
  95. -moz-box-shadow: 0px 0px 4px 4px #888888;
  96. -webkit-box-shadow: 0px 0px 4px 4px #888888;
  97. box-shadow: 0px 0px 4px 4px #888888;
  98. border-collapse: separate;
  99. /* For IE 5.5 - 7 */
  100. filter: progid:DXImageTransform.Microsoft.Glow(Strength=4, Color='#888888') !important;
  101. /* For IE 8 */
  102. -ms-filter: "progid:DXImageTransform.Microsoft.Glow(Strength=4, Color='#888888')" !important;
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement