bar.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. Skin Name: Nivo Slider Bar Theme
  3. Skin URI: http://nivo.dev7studios.com
  4. Description: The bottom bar skin for the Nivo Slider.
  5. Version: 1.0
  6. Author: Gilbert Pellegrom
  7. Author URI: http://dev7studios.com
  8. Supports Thumbs: false
  9. */
  10. .theme-bar.slider-wrapper {
  11. position: relative;
  12. border: 1px solid #333;
  13. overflow: hidden;
  14. }
  15. .theme-bar .nivoSlider {
  16. position:relative;
  17. background:#fff url(loading.gif) no-repeat 50% 50%;
  18. }
  19. .theme-bar .nivoSlider img {
  20. position:absolute;
  21. top:0px;
  22. left:0px;
  23. display:none;
  24. }
  25. .theme-bar .nivoSlider a {
  26. border:0;
  27. display:block;
  28. }
  29. .theme-bar .nivo-controlNav {
  30. position: absolute;
  31. left: 0;
  32. bottom: -41px;
  33. z-index: 10;
  34. width: 100%;
  35. height: 30px;
  36. text-align: center;
  37. padding: 5px 0;
  38. border-top: 1px solid #333;
  39. background: #333;
  40. background: -moz-linear-gradient(top, #565656 0%, #333333 100%); /* FF3.6+ */
  41. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#565656), color-stop(100%,#333333)); /* Chrome,Safari4+ */
  42. background: -webkit-linear-gradient(top, #565656 0%,#333333 100%); /* Chrome10+,Safari5.1+ */
  43. background: -o-linear-gradient(top, #565656 0%,#333333 100%); /* Opera 11.10+ */
  44. background: -ms-linear-gradient(top, #565656 0%,#333333 100%); /* IE10+ */
  45. background: linear-gradient(to bottom, #565656 0%,#333333 100%); /* W3C */
  46. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#565656', endColorstr='#333333',GradientType=0 ); /* IE6-9 */
  47. opacity: 0.5;
  48. -webkit-transition: all 200ms ease-in-out;
  49. -moz-transition: all 200ms ease-in-out;
  50. -o-transition: all 200ms ease-in-out;
  51. transition: all 200ms ease-in-out;
  52. }
  53. .theme-bar:hover .nivo-controlNav {
  54. bottom: 0;
  55. opacity: 1;
  56. }
  57. .theme-bar .nivo-controlNav a {
  58. display:inline-block;
  59. width:22px;
  60. height:22px;
  61. background:url(bullets.png) no-repeat;
  62. text-indent:-9999px;
  63. border:0;
  64. margin: 5px 2px 0 2px;
  65. }
  66. .theme-bar .nivo-controlNav a.active {
  67. background-position:0 -22px;
  68. }
  69. .theme-bar .nivo-directionNav a {
  70. display:block;
  71. border:0;
  72. color: #fff;
  73. text-transform: uppercase;
  74. top: auto;
  75. bottom: 10px;
  76. z-index: 11;
  77. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  78. font-size: 13px;
  79. line-height: 20px;
  80. opacity: 0.5;
  81. -webkit-transition: all 200ms ease-in-out;
  82. -moz-transition: all 200ms ease-in-out;
  83. -o-transition: all 200ms ease-in-out;
  84. transition: all 200ms ease-in-out;
  85. }
  86. .theme-bar a.nivo-nextNav { right: -50px; }
  87. .theme-bar a.nivo-prevNav { left: -50px; }
  88. .theme-bar:hover a.nivo-nextNav {
  89. right: 15px;
  90. opacity: 1;
  91. }
  92. .theme-bar:hover a.nivo-prevNav {
  93. left: 15px;
  94. opacity: 1;
  95. }
  96. .theme-bar .nivo-directionNav a:hover { color: #ddd; }
  97. .theme-bar .nivo-caption {
  98. font-family: Helvetica, Arial, sans-serif;
  99. -webkit-transition: all 200ms ease-in-out;
  100. -moz-transition: all 200ms ease-in-out;
  101. -o-transition: all 200ms ease-in-out;
  102. transition: all 200ms ease-in-out;
  103. }
  104. .theme-bar:hover .nivo-caption {
  105. bottom: 41px;
  106. }
  107. .theme-bar .nivo-caption a {
  108. color:#fff;
  109. border-bottom:1px dotted #fff;
  110. }
  111. .theme-bar .nivo-caption a:hover {
  112. color:#fff;
  113. }
  114. .theme-bar .nivo-controlNav.nivo-thumbs-enabled {
  115. width: 100%;
  116. }
  117. .theme-bar .nivo-controlNav.nivo-thumbs-enabled a {
  118. width: auto;
  119. height: auto;
  120. background: none;
  121. margin-bottom: 5px;
  122. }
  123. .theme-bar .nivo-controlNav.nivo-thumbs-enabled img {
  124. display: block;
  125. width: 120px;
  126. height: auto;
  127. }