You are here

colorbox_default_style.css in Colorbox 6

Same filename and directory in other branches
  1. 7 styles/default/colorbox_default_style.css
/**
 * 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;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
  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 {}
  #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;
      font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
    }
      #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;
      }
      #cboxCurrent {
        position: absolute;
        bottom: 4px;
        left: 60px;
        color: #949494;
      }
      .cboxSlideshow_on #cboxSlideshow {
        position: absolute;
        bottom: 0px;
        right: 30px;
        background: url(images/controls.png) -75px -50px no-repeat;
        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) -49px -50px no-repeat;
        width: 25px;
        height: 25px;
        text-indent: -9999px;
      }
      .cboxSlideshow_off #cboxSlideshow:hover {
        background-position: -25px -50px;
      }
      #cboxPrevious {
        position: absolute;
        bottom: 0;
        left: 0;
        background: url(images/controls.png) -75px 0px no-repeat;
        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) -50px 0px no-repeat;
        width: 25px;
        height: 25px;
        text-indent: -9999px;
      }
      #cboxNext:hover {
        background-position: -50px -25px;
      }
      #cboxLoadingOverlay {
        background: #fff;
      }
      #cboxLoadingGraphic {
        background: url(images/loading_animation.gif) center center no-repeat;
      }
      #cboxClose {
        position: absolute;
        bottom: 0;
        right: 0;
        background: url(images/controls.png) -25px 0px no-repeat;
        width: 25px;
        height: 25px;
        text-indent: -9999px;
      }
      #cboxClose:hover {
        background-position: -25px -25px;
      }

/* The following are fixes for IE. */
.cboxIE6 #cboxTitle {
  background: #fff;
}

File

styles/default/colorbox_default_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, #cboxOverlay, #cboxWrapper {
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. z-index: 9999;
  10. overflow: hidden;
  11. }
  12. #cboxOverlay {
  13. position: fixed;
  14. width: 100%;
  15. height: 100%;
  16. }
  17. #cboxMiddleLeft, #cboxBottomLeft {
  18. clear: left;
  19. }
  20. #cboxContent {
  21. position: relative;
  22. }
  23. #cboxLoadedContent {
  24. overflow: auto;
  25. }
  26. #cboxTitle {
  27. margin: 0;
  28. }
  29. #cboxLoadingOverlay, #cboxLoadingGraphic {
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. width: 100%;
  34. height: 100%;
  35. }
  36. #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  37. cursor: pointer;
  38. }
  39. .cboxPhoto {
  40. float: left;
  41. margin: auto;
  42. border: 0;
  43. display: block;
  44. }
  45. .cboxIframe {
  46. width: 100%;
  47. height: 100%;
  48. display: block;
  49. border: 0;
  50. }
  51. #colorbox, #cboxContent, #cboxLoadedContent {
  52. box-sizing: content-box;
  53. }
  54. /**
  55. * Colorbox module default style:
  56. * The styles are ordered & tabbed in a way that represents
  57. * the nesting of the generated HTML.
  58. */
  59. #cboxOverlay {
  60. background: #000;
  61. }
  62. #colorBox {}
  63. #cboxWrapper {
  64. background: #fff;
  65. -moz-border-radius: 5px;
  66. -webkit-border-radius: 5px;
  67. border-radius: 5px;
  68. }
  69. #cboxTopLeft {
  70. width: 15px;
  71. height: 15px;
  72. }
  73. #cboxTopCenter {
  74. height: 15px;
  75. }
  76. #cboxTopRight {
  77. width: 15px;
  78. height: 15px;
  79. }
  80. #cboxBottomLeft {
  81. width: 15px;
  82. height: 10px;
  83. }
  84. #cboxBottomCenter {
  85. height: 10px;
  86. }
  87. #cboxBottomRight {
  88. width: 15px;
  89. height: 10px;
  90. }
  91. #cboxMiddleLeft {
  92. width: 15px;
  93. }
  94. #cboxMiddleRight {
  95. width: 15px;
  96. }
  97. #cboxContent {
  98. background: #fff;
  99. overflow: hidden;
  100. font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
  101. }
  102. #cboxError {
  103. padding: 50px;
  104. border: 1px solid #ccc;
  105. }
  106. #cboxLoadedContent {
  107. margin-bottom: 28px;
  108. }
  109. #cboxTitle {
  110. position: absolute;
  111. background: rgba(255, 255, 255, 0.7);
  112. bottom: 28px;
  113. left: 0;
  114. color: #535353;
  115. width: 100%;
  116. padding: 4px;
  117. }
  118. #cboxCurrent {
  119. position: absolute;
  120. bottom: 4px;
  121. left: 60px;
  122. color: #949494;
  123. }
  124. .cboxSlideshow_on #cboxSlideshow {
  125. position: absolute;
  126. bottom: 0px;
  127. right: 30px;
  128. background: url(images/controls.png) -75px -50px no-repeat;
  129. width: 25px;
  130. height: 25px;
  131. text-indent: -9999px;
  132. }
  133. .cboxSlideshow_on #cboxSlideshow:hover {
  134. background-position: -101px -50px;
  135. }
  136. .cboxSlideshow_off #cboxSlideshow {
  137. position: absolute;
  138. bottom: 0px;
  139. right: 30px;
  140. background: url(images/controls.png) -49px -50px no-repeat;
  141. width: 25px;
  142. height: 25px;
  143. text-indent: -9999px;
  144. }
  145. .cboxSlideshow_off #cboxSlideshow:hover {
  146. background-position: -25px -50px;
  147. }
  148. #cboxPrevious {
  149. position: absolute;
  150. bottom: 0;
  151. left: 0;
  152. background: url(images/controls.png) -75px 0px no-repeat;
  153. width: 25px;
  154. height: 25px;
  155. text-indent: -9999px;
  156. }
  157. #cboxPrevious:hover {
  158. background-position: -75px -25px;
  159. }
  160. #cboxNext {
  161. position: absolute;
  162. bottom: 0;
  163. left: 27px;
  164. background: url(images/controls.png) -50px 0px no-repeat;
  165. width: 25px;
  166. height: 25px;
  167. text-indent: -9999px;
  168. }
  169. #cboxNext:hover {
  170. background-position: -50px -25px;
  171. }
  172. #cboxLoadingOverlay {
  173. background: #fff;
  174. }
  175. #cboxLoadingGraphic {
  176. background: url(images/loading_animation.gif) center center no-repeat;
  177. }
  178. #cboxClose {
  179. position: absolute;
  180. bottom: 0;
  181. right: 0;
  182. background: url(images/controls.png) -25px 0px no-repeat;
  183. width: 25px;
  184. height: 25px;
  185. text-indent: -9999px;
  186. }
  187. #cboxClose:hover {
  188. background-position: -25px -25px;
  189. }
  190. /* The following are fixes for IE. */
  191. .cboxIE6 #cboxTitle {
  192. background: #fff;
  193. }