Advertisement
FireBot

flexslider-ppa-stackexchange

Apr 21st, 2013
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. /* ==========================================================================
  2. jQuery FlexSlider v2.0
  3. ==========================================================================*/
  4.  
  5. /* Browser Resets */
  6. .flex-container a:active,
  7. .flexslider a:active,
  8. .flex-container a:focus,
  9. .flexslider a:focus {outline: none;}
  10. .slides,
  11. .flex-control-nav,
  12. .flex-direction-nav {margin: 0; padding: 0; list-style: none;}
  13.  
  14. /* FlexSlider Necessary Styles
  15. *********************************/
  16. .flexslider {margin: 0; padding: 0;}
  17. .flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
  18. .flexslider .slides img {width: 100%; display: block;}
  19. .flex-pauseplay{font-size:11px;}
  20. #slider .flex-pauseplay{display:none;}
  21. .flex-pauseplay span {text-transform: capitalize;}
  22. .flex-pauseplay a {cursor:pointer;}
  23.  
  24. #slider-controls{display:inline;float:left;width:32px;height:14px;padding-left:200px;margin:5px 20px 0 0;}
  25. .thumb-toggle{display:inline;float:left;max-width:150px;height:14px;font-size:11px;margin:5px 0 0;cursor:pointer;}
  26. .fullscreen-toggle{display:inline;float:left;max-width:150px;height:14px;font-size:11px;margin:5px 0 0 20px;cursor:pointer;}
  27.  
  28. .slide-title{display:none;position:absolute;top:120px;left:350px;display:block;z-index:9999}
  29.  
  30. /* Clearfix for the .slides element */
  31. .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
  32. html[xmlns] .slides {display: block;}
  33. * html .slides {height: 1%;}
  34.  
  35. /* No JavaScript Fallback */
  36. /* If you are not using another script, such as Modernizr, make sure you
  37. * include js that eliminates this class on page load */
  38. .no-js .slides > li:first-child {display: block;}
  39.  
  40.  
  41. /* FlexSlider Default Theme
  42. *********************************/
  43. .flexslider {margin: 0; background: #fff; position: relative; zoom: 1;}
  44. .flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
  45. .loading .flex-viewport {max-height: 300px;}
  46. .flexslider .slides {zoom: 1;}
  47.  
  48. .carousel li {margin-right: 5px}
  49.  
  50. /* Direction Nav */
  51. .flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(../images/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;z-index:1100}
  52. .flex-direction-nav .flex-next {background-position: 100% 0; right: -66px; }
  53. .flex-direction-nav .flex-prev {left: -66px;}
  54. .flexslider:hover .flex-next {opacity: 0.8; right: -36px;}
  55. .flexslider:hover .flex-prev {opacity: 0.8; left: -36px;}
  56. .flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
  57. .flex-direction-nav .disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}
  58.  
  59. /* Control Nav */
  60. .flex-control-nav {width: 100%;}
  61. .flex-control-nav li {margin: 3px 6px 1px; display: inline-block; zoom: 1; *display: inline;}
  62. .flex-control-paging{position:relative;}
  63. .flex-control-paging li a {width: 11px;display: block; font-size:11px; cursor: pointer;}
  64. .flex-control-paging li a:hover {}
  65. .flex-control-paging li a.flex-active {cursor: default; font-weight:700; }
  66.  
  67. .flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
  68. .flex-control-thumbs li {width: 8%; float: left; margin: 0 .165% 4px;}
  69. .flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
  70. .flex-control-thumbs img.flex-active{opacity:1;}
  71. .flex-control-thumbs img:hover {opacity: 1;}
  72. .flex-control-thumbs .active {opacity: 1; cursor: default;}
  73.  
  74. /*Thumbnail Slider*/
  75. #carousel{
  76. }
  77. #carousel img {
  78. display: block;
  79. opacity: .5;
  80. cursor: pointer;
  81. }
  82. #carousel .flex-active-slide img {
  83. opacity: 1;
  84. cursor: default;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement