You are here

slideshows.css in AT Tools 8

@charset "UTF-8";
/**
 * jQuery FlexSlider v2.3.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Ville Ristimäki (@villeristi)
 * Converted to SCSS syntax for Adaptivetheme by Jeff Burnz.
 */
.flex-container a:focus, .flex-slider a:focus, .flex-container a:focus, .flex-slider a:focus {
  outline: none;
}
.flex-control-nav, .flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}

/**
 * BASE STYLES
 ============================================================================ */
.flexslider {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  zoom: 1;
}
.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style: none;
  zoom: 1;
}
.flexslider .slides > li {
  display: none;
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}

/**
 * DEFAULT THEME
 ============================================================================ */
.flexslider {
  background-color: #ffffff;
  border-radius: 0;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}

.flex-caption {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: left;
  margin: 0;
  padding: 16px 16px 29px;
  padding: 1rem 1rem 1.8125rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media all and (max-width: 45em) {
  .flex-caption {
    display: none;
  }
}

.flex-direction-nav a {
  background-color: transparent;
  color: transparent;
  border: 0;
  text-decoration: none;
  height: 30px;
  height: 1.875rem;
  margin: -30px 0 0;
  margin: -1.875rem 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  font: 0/0 a;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:hover, .flex-direction-nav a:focus, .flex-direction-nav a:active {
  background-color: transparent;
  color: transparent;
  border: 0;
  text-decoration: none;
}
.flex-direction-nav a:before {
  font-family: FontAwesome, sans-serif;
  content: "";
  font-size: 30px;
  font-size: 1.875rem;
  color: #ffffff;
  line-height: 1;
  text-align: left;
  display: none;
}
.fa-loaded .flex-direction-nav a:before {
  display: block;
}
.fa-unavailable .flex-direction-nav a:before {
  display: block;
  content: "\2329";
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
@media all and (max-width: 60em) {
  .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px;
  }
}
.flex-direction-nav .flex-next {
  right: -50px;
}
.flex-direction-nav .flex-next:before {
  content: "";
  text-align: right;
}
.fa-unavailable .flex-direction-nav .flex-next:before {
  content: "\232a";
}
@media all and (max-width: 60em) {
  .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
  }
}
.flexslider:hover .flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover,
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next {
  right: 10px;
}
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-indent: -9999px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.flex-control-paging li a.flex-active {
  background-color: #000;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/*# sourceMappingURL=maps/slideshows.css.map */

File

at_theme_generator/starterkits/starterkit/styles/css/components/slideshows.css
View source
  1. @charset "UTF-8";
  2. /**
  3. * jQuery FlexSlider v2.3.0
  4. * http://www.woothemes.com/flexslider/
  5. *
  6. * Copyright 2012 WooThemes
  7. * Free to use under the GPLv2 license.
  8. * http://www.gnu.org/licenses/gpl-2.0.html
  9. *
  10. * Contributing author: Ville Ristimäki (@villeristi)
  11. * Converted to SCSS syntax for Adaptivetheme by Jeff Burnz.
  12. */
  13. .flex-container a:focus, .flex-slider a:focus, .flex-container a:focus, .flex-slider a:focus {
  14. outline: none;
  15. }
  16. .flex-control-nav, .flex-direction-nav {
  17. margin: 0;
  18. padding: 0;
  19. list-style: none;
  20. }
  21. .flex-pauseplay span {
  22. text-transform: capitalize;
  23. }
  24. /**
  25. * BASE STYLES
  26. ============================================================================ */
  27. .flexslider {
  28. position: relative;
  29. overflow: hidden;
  30. margin: 0;
  31. padding: 0;
  32. zoom: 1;
  33. }
  34. .flexslider .slides {
  35. margin: 0;
  36. padding: 0;
  37. list-style: none;
  38. zoom: 1;
  39. }
  40. .flexslider .slides > li {
  41. display: none;
  42. position: relative;
  43. -webkit-backface-visibility: hidden;
  44. backface-visibility: hidden;
  45. }
  46. .no-js .flexslider .slides > li:first-child {
  47. display: block;
  48. }
  49. .flexslider .slides img {
  50. width: 100%;
  51. display: block;
  52. }
  53. .flexslider .slides:after {
  54. content: "\0020";
  55. display: block;
  56. clear: both;
  57. visibility: hidden;
  58. line-height: 0;
  59. height: 0;
  60. width: 0;
  61. }
  62. html[xmlns] .flexslider .slides {
  63. display: block;
  64. }
  65. * html .flexslider .slides {
  66. height: 1%;
  67. }
  68. /**
  69. * DEFAULT THEME
  70. ============================================================================ */
  71. .flexslider {
  72. background-color: #ffffff;
  73. border-radius: 0;
  74. }
  75. .flex-viewport {
  76. max-height: 2000px;
  77. transition: all 1s ease;
  78. }
  79. .loading .flex-viewport {
  80. max-height: 300px;
  81. }
  82. .flex-caption {
  83. display: block;
  84. width: 100%;
  85. position: absolute;
  86. left: 0;
  87. bottom: 0;
  88. text-align: left;
  89. margin: 0;
  90. padding: 16px 16px 29px;
  91. padding: 1rem 1rem 1.8125rem;
  92. background-color: rgba(0, 0, 0, 0.6);
  93. color: #fff;
  94. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  95. -webkit-backface-visibility: hidden;
  96. backface-visibility: hidden;
  97. }
  98. @media all and (max-width: 45em) {
  99. .flex-caption {
  100. display: none;
  101. }
  102. }
  103. .flex-direction-nav a {
  104. background-color: transparent;
  105. color: transparent;
  106. border: 0;
  107. text-decoration: none;
  108. height: 30px;
  109. height: 1.875rem;
  110. margin: -30px 0 0;
  111. margin: -1.875rem 0 0;
  112. position: absolute;
  113. top: 50%;
  114. z-index: 10;
  115. display: block;
  116. font: 0/0 a;
  117. position: absolute;
  118. cursor: pointer;
  119. opacity: 0;
  120. transition: all 0.3s ease-in-out;
  121. }
  122. .flex-direction-nav a:hover, .flex-direction-nav a:focus, .flex-direction-nav a:active {
  123. background-color: transparent;
  124. color: transparent;
  125. border: 0;
  126. text-decoration: none;
  127. }
  128. .flex-direction-nav a:before {
  129. font-family: FontAwesome, sans-serif;
  130. content: "";
  131. font-size: 30px;
  132. font-size: 1.875rem;
  133. color: #ffffff;
  134. line-height: 1;
  135. text-align: left;
  136. display: none;
  137. }
  138. .fa-loaded .flex-direction-nav a:before {
  139. display: block;
  140. }
  141. .fa-unavailable .flex-direction-nav a:before {
  142. display: block;
  143. content: "\2329";
  144. }
  145. .flex-direction-nav .flex-prev {
  146. left: -50px;
  147. }
  148. @media all and (max-width: 60em) {
  149. .flex-direction-nav .flex-prev {
  150. opacity: 0.7;
  151. left: 10px;
  152. }
  153. }
  154. .flex-direction-nav .flex-next {
  155. right: -50px;
  156. }
  157. .flex-direction-nav .flex-next:before {
  158. content: "";
  159. text-align: right;
  160. }
  161. .fa-unavailable .flex-direction-nav .flex-next:before {
  162. content: "\232a";
  163. }
  164. @media all and (max-width: 60em) {
  165. .flex-direction-nav .flex-next {
  166. opacity: 0.7;
  167. right: 10px;
  168. }
  169. }
  170. .flexslider:hover .flex-direction-nav .flex-prev,
  171. .flexslider:hover .flex-direction-nav .flex-next {
  172. opacity: 0.7;
  173. }
  174. .flexslider:hover .flex-direction-nav .flex-prev:hover,
  175. .flexslider:hover .flex-direction-nav .flex-next:hover {
  176. opacity: 1;
  177. }
  178. .flexslider:hover .flex-direction-nav .flex-prev {
  179. left: 10px;
  180. }
  181. .flexslider:hover .flex-direction-nav .flex-next {
  182. right: 10px;
  183. }
  184. .flex-direction-nav .flex-disabled {
  185. opacity: 0 !important;
  186. filter: alpha(opacity=0);
  187. cursor: default;
  188. }
  189. .flex-control-nav {
  190. width: 100%;
  191. position: absolute;
  192. bottom: 0;
  193. text-align: center;
  194. }
  195. .flex-control-nav li {
  196. margin: 0 6px;
  197. display: inline-block;
  198. zoom: 1;
  199. *display: inline;
  200. }
  201. .flex-control-paging li a {
  202. width: 11px;
  203. height: 11px;
  204. display: block;
  205. background-color: rgba(255, 255, 255, 0.3);
  206. cursor: pointer;
  207. text-indent: -9999px;
  208. box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  209. border-radius: 20px;
  210. }
  211. .flex-control-paging li a:hover {
  212. background-color: rgba(255, 255, 255, 0.6);
  213. }
  214. .flex-control-paging li a.flex-active {
  215. background-color: #000;
  216. background-color: rgba(255, 255, 255, 0.9);
  217. cursor: default;
  218. }
  219. .flex-control-thumbs {
  220. margin: 5px 0 0;
  221. position: static;
  222. overflow: hidden;
  223. }
  224. .flex-control-thumbs li {
  225. width: 25%;
  226. float: left;
  227. margin: 0;
  228. }
  229. .flex-control-thumbs img {
  230. width: 100%;
  231. display: block;
  232. opacity: .7;
  233. cursor: pointer;
  234. transition: all 1s ease;
  235. }
  236. .flex-control-thumbs img:hover {
  237. opacity: 1;
  238. }
  239. .flex-control-thumbs .flex-active {
  240. opacity: 1;
  241. cursor: default;
  242. }
  243. /*# sourceMappingURL=maps/slideshows.css.map */