Same filename in this branch
  1. 7.x-2.x styles/plain/colorbox_style.css
  2. 7.x-2.x styles/stockholmsyndrome/colorbox_style.css
Same filename and directory in other branches
  1. 2.0.x styles/plain/colorbox_style.css 1 comment
  2. 2.0.x styles/default/colorbox_style.css 1 comment
  3. 2.0.x styles/stockholmsyndrome/colorbox_style.css 1 comment
  4. 8.x-1.x styles/plain/colorbox_style.css 1 comment
  5. 8.x-1.x styles/default/colorbox_style.css 1 comment
  6. 8.x-1.x styles/stockholmsyndrome/colorbox_style.css 1 comment
/**
 * Colorbox Core Style:
 * The following CSS is consistent between example themes and should not be altered.
 */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 * These elements are buttons, and may need to have additional
 * styles reset to avoid unwanted base styles.
 */
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  cursor: pointer;
}
/**
 * Avoid outlines on :active (mouseclick),
 * but preserve outlines on :focus (tabbed navigating)
 */
#cboxPrevious:active,
#cboxNext:active,
#cboxClose:active,
#cboxSlideshow:active {
  outline: 0;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Reset box sizing to content-box if theme is using border-box. */
#colorbox,
#cboxContent,
#cboxLoadedContent {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Colorbox module default style:
 * The styles are ordered & tabbed in a way that represents
 * the nesting of the generated HTML.
 */
#cboxOverlay {
  background: #000;
}
#colorbox {
  outline: 0;
}
#cboxWrapper {
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#cboxTopLeft {
  width: 15px;
  height: 15px;
}
#cboxTopCenter {
  height: 15px;
}
#cboxTopRight {
  width: 15px;
  height: 15px;
}
#cboxBottomLeft {
  width: 15px;
  height: 10px;
}
#cboxBottomCenter {
  height: 10px;
}
#cboxBottomRight {
  width: 15px;
  height: 10px;
}
#cboxMiddleLeft {
  width: 15px;
}
#cboxMiddleRight {
  width: 15px;
}
#cboxContent {
  background: #fff;
  overflow: hidden;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  margin-bottom: 28px;
}
#cboxTitle {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  bottom: 28px;
  left: 0;
  color: #535353;
  width: 100%;
  padding: 4px 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 60px;
  color: #949494;
}
.cboxSlideshow_on #cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 30px;
  background: url(images/controls.png) no-repeat -75px -50px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -101px -50px;
}
.cboxSlideshow_off #cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 30px;
  background: url(images/controls.png) no-repeat -25px -50px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -49px -50px;
}
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/controls.png) no-repeat -75px 0px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(images/controls.png) no-repeat -50px 0px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxLoadingOverlay {
  background: #fff;
}
#cboxLoadingGraphic {
  background: url(images/loading_animation.gif) no-repeat center center;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(images/controls.png) no-repeat -25px 0px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: -25px -25px;
}

File

styles/default/colorbox_style.css

View source
  1. /**
  2. * Colorbox Core Style:
  3. * The following CSS is consistent between example themes and should not be altered.
  4. */
  5. #colorbox,
  6. #cboxOverlay,
  7. #cboxWrapper {
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. z-index: 9999;
  12. overflow: hidden;
  13. }
  14. #cboxOverlay {
  15. position: fixed;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. #cboxMiddleLeft,
  20. #cboxBottomLeft {
  21. clear: left;
  22. }
  23. #cboxContent {
  24. position: relative;
  25. }
  26. #cboxLoadedContent {
  27. overflow: auto;
  28. -webkit-overflow-scrolling: touch;
  29. }
  30. #cboxTitle {
  31. margin: 0;
  32. }
  33. #cboxLoadingOverlay,
  34. #cboxLoadingGraphic {
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. /**
  42. * These elements are buttons, and may need to have additional
  43. * styles reset to avoid unwanted base styles.
  44. */
  45. #cboxPrevious,
  46. #cboxNext,
  47. #cboxClose,
  48. #cboxSlideshow {
  49. border: 0;
  50. padding: 0;
  51. margin: 0;
  52. overflow: visible;
  53. width: auto;
  54. background: none;
  55. cursor: pointer;
  56. }
  57. /**
  58. * Avoid outlines on :active (mouseclick),
  59. * but preserve outlines on :focus (tabbed navigating)
  60. */
  61. #cboxPrevious:active,
  62. #cboxNext:active,
  63. #cboxClose:active,
  64. #cboxSlideshow:active {
  65. outline: 0;
  66. }
  67. .cboxPhoto {
  68. float: left;
  69. margin: auto;
  70. border: 0;
  71. display: block;
  72. max-width: 100%;
  73. max-height: 100%;
  74. }
  75. .cboxIframe {
  76. width: 100%;
  77. height: 100%;
  78. display: block;
  79. border: 0;
  80. }
  81. /* Reset box sizing to content-box if theme is using border-box. */
  82. #colorbox,
  83. #cboxContent,
  84. #cboxLoadedContent {
  85. -moz-box-sizing: content-box;
  86. -webkit-box-sizing: content-box;
  87. box-sizing: content-box;
  88. }
  89. /**
  90. * Colorbox module default style:
  91. * The styles are ordered & tabbed in a way that represents
  92. * the nesting of the generated HTML.
  93. */
  94. #cboxOverlay {
  95. background: #000;
  96. }
  97. #colorbox {
  98. outline: 0;
  99. }
  100. #cboxWrapper {
  101. background: #fff;
  102. -moz-border-radius: 5px;
  103. -webkit-border-radius: 5px;
  104. border-radius: 5px;
  105. }
  106. #cboxTopLeft {
  107. width: 15px;
  108. height: 15px;
  109. }
  110. #cboxTopCenter {
  111. height: 15px;
  112. }
  113. #cboxTopRight {
  114. width: 15px;
  115. height: 15px;
  116. }
  117. #cboxBottomLeft {
  118. width: 15px;
  119. height: 10px;
  120. }
  121. #cboxBottomCenter {
  122. height: 10px;
  123. }
  124. #cboxBottomRight {
  125. width: 15px;
  126. height: 10px;
  127. }
  128. #cboxMiddleLeft {
  129. width: 15px;
  130. }
  131. #cboxMiddleRight {
  132. width: 15px;
  133. }
  134. #cboxContent {
  135. background: #fff;
  136. overflow: hidden;
  137. }
  138. #cboxError {
  139. padding: 50px;
  140. border: 1px solid #ccc;
  141. }
  142. #cboxLoadedContent {
  143. margin-bottom: 28px;
  144. }
  145. #cboxTitle {
  146. position: absolute;
  147. background: rgba(255, 255, 255, 0.7);
  148. bottom: 28px;
  149. left: 0;
  150. color: #535353;
  151. width: 100%;
  152. padding: 4px 6px;
  153. -moz-box-sizing: border-box;
  154. -webkit-box-sizing: border-box;
  155. box-sizing: border-box;
  156. }
  157. #cboxCurrent {
  158. position: absolute;
  159. bottom: 4px;
  160. left: 60px;
  161. color: #949494;
  162. }
  163. .cboxSlideshow_on #cboxSlideshow {
  164. position: absolute;
  165. bottom: 0px;
  166. right: 30px;
  167. background: url(images/controls.png) no-repeat -75px -50px;
  168. width: 25px;
  169. height: 25px;
  170. text-indent: -9999px;
  171. }
  172. .cboxSlideshow_on #cboxSlideshow:hover {
  173. background-position: -101px -50px;
  174. }
  175. .cboxSlideshow_off #cboxSlideshow {
  176. position: absolute;
  177. bottom: 0px;
  178. right: 30px;
  179. background: url(images/controls.png) no-repeat -25px -50px;
  180. width: 25px;
  181. height: 25px;
  182. text-indent: -9999px;
  183. }
  184. .cboxSlideshow_off #cboxSlideshow:hover {
  185. background-position: -49px -50px;
  186. }
  187. #cboxPrevious {
  188. position: absolute;
  189. bottom: 0;
  190. left: 0;
  191. background: url(images/controls.png) no-repeat -75px 0px;
  192. width: 25px;
  193. height: 25px;
  194. text-indent: -9999px;
  195. }
  196. #cboxPrevious:hover {
  197. background-position: -75px -25px;
  198. }
  199. #cboxNext {
  200. position: absolute;
  201. bottom: 0;
  202. left: 27px;
  203. background: url(images/controls.png) no-repeat -50px 0px;
  204. width: 25px;
  205. height: 25px;
  206. text-indent: -9999px;
  207. }
  208. #cboxNext:hover {
  209. background-position: -50px -25px;
  210. }
  211. #cboxLoadingOverlay {
  212. background: #fff;
  213. }
  214. #cboxLoadingGraphic {
  215. background: url(images/loading_animation.gif) no-repeat center center;
  216. }
  217. #cboxClose {
  218. position: absolute;
  219. bottom: 0;
  220. right: 0;
  221. background: url(images/controls.png) no-repeat -25px 0px;
  222. width: 25px;
  223. height: 25px;
  224. text-indent: -9999px;
  225. }
  226. #cboxClose:hover {
  227. background-position: -25px -25px;
  228. }