flexslider.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * jQuery FlexSlider v2.7.0
  3. * http://www.woothemes.com/flexslider/
  4. *
  5. * Copyright 2012 WooThemes
  6. * Free to use under the GPLv2 and later license.
  7. * http://www.gnu.org/licenses/gpl-2.0.html
  8. *
  9. * Contributing author: Tyler Smith (@mbmufffin)
  10. *
  11. */
  12. /* ====================================================================================================================
  13. * FONT-FACE
  14. * ====================================================================================================================*/
  15. @font-face {
  16. font-family: 'flexslider-icon';
  17. src: url('fonts/flexslider-icon.eot');
  18. src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  19. font-weight: normal;
  20. font-style: normal;
  21. }
  22. /* ====================================================================================================================
  23. * RESETS
  24. * ====================================================================================================================*/
  25. .flex-container a:hover,
  26. .flex-slider a:hover {
  27. outline: none;
  28. }
  29. .slides,
  30. .slides > li,
  31. .flex-control-nav,
  32. .flex-direction-nav {
  33. margin: 0;
  34. padding: 0;
  35. list-style: none;
  36. }
  37. .flex-pauseplay span {
  38. text-transform: capitalize;
  39. }
  40. /* ====================================================================================================================
  41. * BASE STYLES
  42. * ====================================================================================================================*/
  43. .flexslider {
  44. margin: 0;
  45. padding: 0;
  46. }
  47. .flexslider .slides > li {
  48. display: none;
  49. -webkit-backface-visibility: hidden;
  50. }
  51. .flexslider .slides img {
  52. width: 100%;
  53. display: block;
  54. }
  55. .flexslider .slides:after {
  56. content: "\0020";
  57. display: block;
  58. clear: both;
  59. visibility: hidden;
  60. line-height: 0;
  61. height: 0;
  62. }
  63. html[xmlns] .flexslider .slides {
  64. display: block;
  65. }
  66. * html .flexslider .slides {
  67. height: 1%;
  68. }
  69. .no-js .flexslider .slides > li:first-child {
  70. display: block;
  71. }
  72. /* ====================================================================================================================
  73. * DEFAULT THEME
  74. * ====================================================================================================================*/
  75. .flexslider {
  76. margin: 0 0 60px;
  77. background: #fff;
  78. border: 4px solid #fff;
  79. position: relative;
  80. zoom: 1;
  81. -webkit-border-radius: 4px;
  82. -moz-border-radius: 4px;
  83. border-radius: 4px;
  84. -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  85. -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  86. -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  87. box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  88. }
  89. .flexslider .slides {
  90. zoom: 1;
  91. }
  92. .flexslider .slides img {
  93. height: auto;
  94. -moz-user-select: none;
  95. }
  96. .flex-viewport {
  97. max-height: 2000px;
  98. -webkit-transition: all 1s ease;
  99. -moz-transition: all 1s ease;
  100. -ms-transition: all 1s ease;
  101. -o-transition: all 1s ease;
  102. transition: all 1s ease;
  103. }
  104. .loading .flex-viewport {
  105. max-height: 300px;
  106. }
  107. .carousel li {
  108. margin-right: 5px;
  109. }
  110. .flex-direction-nav {
  111. *height: 0;
  112. }
  113. .flex-direction-nav a {
  114. text-decoration: none;
  115. display: block;
  116. width: 40px;
  117. height: 40px;
  118. margin: -20px 0 0;
  119. padding: 9px;
  120. position: absolute;
  121. top: 50%;
  122. z-index: 10;
  123. overflow: hidden;
  124. opacity: 0;
  125. cursor: pointer;
  126. color: rgba(0, 0, 0, 0.8);
  127. text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  128. -webkit-transition: all 0.3s ease-in-out;
  129. -moz-transition: all 0.3s ease-in-out;
  130. -ms-transition: all 0.3s ease-in-out;
  131. -o-transition: all 0.3s ease-in-out;
  132. transition: all 0.3s ease-in-out;
  133. }
  134. .flex-direction-nav a:before {
  135. font-family: "flexslider-icon";
  136. font-size: 40px;
  137. display: inline-block;
  138. content: '\f001';
  139. color: rgba(0, 0, 0, 0.8);
  140. text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  141. }
  142. .flex-direction-nav a.flex-next:before {
  143. content: '\f002';
  144. }
  145. .flex-direction-nav .flex-prev {
  146. left: -50px;
  147. }
  148. .flex-direction-nav .flex-next {
  149. right: -50px;
  150. text-align: right;
  151. }
  152. .flexslider:hover .flex-direction-nav .flex-prev {
  153. opacity: 0.7;
  154. left: 10px;
  155. }
  156. .flexslider:hover .flex-direction-nav .flex-prev:hover {
  157. opacity: 1;
  158. }
  159. .flexslider:hover .flex-direction-nav .flex-next {
  160. opacity: 0.7;
  161. right: 10px;
  162. }
  163. .flexslider:hover .flex-direction-nav .flex-next:hover {
  164. opacity: 1;
  165. }
  166. .flex-direction-nav .flex-disabled {
  167. opacity: 0!important;
  168. filter: alpha(opacity=0);
  169. cursor: default;
  170. z-index: -1;
  171. }
  172. .flex-pauseplay a {
  173. display: block;
  174. width: 20px;
  175. height: 20px;
  176. position: absolute;
  177. bottom: 5px;
  178. left: 10px;
  179. opacity: 0.8;
  180. z-index: 10;
  181. overflow: hidden;
  182. cursor: pointer;
  183. color: #000;
  184. }
  185. .flex-pauseplay a:before {
  186. font-family: "flexslider-icon";
  187. font-size: 20px;
  188. display: inline-block;
  189. content: '\f004';
  190. }
  191. .flex-pauseplay a:hover {
  192. opacity: 1;
  193. }
  194. .flex-pauseplay a.flex-play:before {
  195. content: '\f003';
  196. }
  197. .flex-control-nav {
  198. width: 100%;
  199. position: absolute;
  200. text-align: center;
  201. }
  202. .flex-control-nav li {
  203. margin: 0 6px;
  204. display: inline-block;
  205. zoom: 1;
  206. *display: inline;
  207. }
  208. .flex-control-paging li a {
  209. width: 11px;
  210. height: 11px;
  211. display: block;
  212. background: #666;
  213. background: rgba(0, 0, 0, 0.5);
  214. cursor: pointer;
  215. text-indent: -9999px;
  216. -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  217. -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  218. -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  219. box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  220. -webkit-border-radius: 20px;
  221. -moz-border-radius: 20px;
  222. border-radius: 20px;
  223. }
  224. .flex-control-paging li a:hover {
  225. background: #333;
  226. background: rgba(0, 0, 0, 0.7);
  227. }
  228. .flex-control-paging li a.flex-active {
  229. background: #000;
  230. background: rgba(0, 0, 0, 0.9);
  231. cursor: default;
  232. }
  233. .flex-control-thumbs {
  234. margin: 5px 0 0;
  235. position: static;
  236. overflow: hidden;
  237. }
  238. .flex-control-thumbs li {
  239. width: 25%;
  240. float: left;
  241. margin: 0;
  242. }
  243. .flex-control-thumbs img {
  244. width: 100%;
  245. height: auto;
  246. display: block;
  247. opacity: .7;
  248. cursor: pointer;
  249. -moz-user-select: none;
  250. -webkit-transition: all 1s ease;
  251. -moz-transition: all 1s ease;
  252. -ms-transition: all 1s ease;
  253. -o-transition: all 1s ease;
  254. transition: all 1s ease;
  255. }
  256. .flex-control-thumbs img:hover {
  257. opacity: 1;
  258. }
  259. .flex-control-thumbs .flex-active {
  260. opacity: 1;
  261. cursor: default;
  262. }
  263. .flex-caption {
  264. width: 100%;
  265. padding: 2%;
  266. left: 0;
  267. bottom: 0;
  268. background: rgba(0,0,0,.5);
  269. color: #fff;
  270. text-shadow: 0 -1px 0 rgba(0,0,0,.3);
  271. font-size: 14px;
  272. line-height: 18px;
  273. }
  274. /* ====================================================================================================================
  275. * RESPONSIVE
  276. * ====================================================================================================================*/
  277. @media screen and (max-width: 860px) {
  278. .flex-direction-nav .flex-prev {
  279. opacity: 1;
  280. left: 10px;
  281. }
  282. .flex-direction-nav .flex-next {
  283. opacity: 1;
  284. right: 10px;
  285. }
  286. }