Advertisement
Guest User

theme

a guest
Jan 16th, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.66 KB | None | 0 0
  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.  
  11. .theme-bar.slider-wrapper {
  12. position: relative;
  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.  
  30. .theme-bar .nivo-controlNav {
  31. position: absolute;
  32. right: 0;
  33. margin-right: 90px;
  34. z-index: 10;
  35. width: 97px;
  36. height: 27px;
  37. padding: 5px 0;
  38. background: #fff;
  39. -webkit-transition: all 200ms ease-in-out;
  40. -moz-transition: all 200ms ease-in-out;
  41. -o-transition: all 200ms ease-in-out;
  42. transition: all 200ms ease-in-out;
  43. border-top-right-radius: 8px;  
  44. border-top-left-radius: 8px;   
  45. -moz-border-radius-topright: 8px;
  46. -moz-border-radius-topleft: 8px;
  47. bottom: 0;
  48. opacity: 1;
  49. }
  50.  
  51. .theme-bar .nivo-controlNav a {
  52. display:inline-block;
  53. width:22px;
  54. height:22px;
  55. background:url(bullets.png) no-repeat;
  56. text-indent:-9999px;
  57. border:0;
  58. margin: 5px 0px 0 0px;
  59. }
  60. .theme-bar .nivo-controlNav a.active {
  61. background-position:0 -22px;
  62. }
  63.  
  64. .theme-bar .nivo-directionNav a {
  65. display:block;
  66. border:0;
  67. color: #fff;
  68. text-transform: uppercase;
  69. top: auto;
  70. bottom: 10px;
  71. z-index: 11;
  72. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  73. font-size: 0px;
  74. line-height: 20px;
  75. opacity: 0.5;
  76. -webkit-transition: all 200ms ease-in-out;
  77. -moz-transition: all 200ms ease-in-out;
  78. -o-transition: all 200ms ease-in-out;
  79. transition: all 200ms ease-in-out;
  80. }
  81. .theme-bar a.nivo-nextNav { right: -50px; }
  82. .theme-bar a.nivo-prevNav { left: -50px; }
  83. .theme-bar:hover a.nivo-nextNav {
  84. right: 15px;
  85. opacity: 1;
  86. }
  87. .theme-bar:hover a.nivo-prevNav {
  88. left: 15px;
  89. opacity: 1;
  90. }
  91. .theme-bar .nivo-directionNav a:hover { color: #ddd; }
  92.  
  93. .theme-bar .nivo-caption {
  94. font-family: Helvetica, Arial, sans-serif;
  95. -webkit-transition: all 200ms ease-in-out;
  96. -moz-transition: all 200ms ease-in-out;
  97. -o-transition: all 200ms ease-in-out;
  98. transition: all 200ms ease-in-out;
  99. }
  100. .theme-bar:hover .nivo-caption {
  101. bottom: 41px;
  102. }
  103. .theme-bar .nivo-caption a {
  104. color:#fff;
  105. border-bottom:1px dotted #fff;
  106. }
  107. .theme-bar .nivo-caption a:hover {
  108. color:#fff;
  109. }
  110.  
  111. .theme-bar .nivo-controlNav.nivo-thumbs-enabled {
  112. width: 100%;
  113. }
  114. .theme-bar .nivo-controlNav.nivo-thumbs-enabled a {
  115. width: auto;
  116. height: auto;
  117. background: none;
  118. margin-bottom: 5px;
  119. }
  120. .theme-bar .nivo-controlNav.nivo-thumbs-enabled img {
  121. display: block;
  122. width: 120px;
  123. height: auto;
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement