Advertisement
Guest User

default.css

a guest
Oct 23rd, 2014
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.11 KB | None | 0 0
  1. /*
  2. Skin Name: Nivo Slider Default Theme
  3. Skin URI: http://nivo.dev7studios.com
  4. Description: The default skin for the Nivo Slider.
  5. Version: 1.3
  6. Author: Gilbert Pellegrom
  7. Author URI: http://dev7studios.com
  8. Supports Thumbs: true
  9. */
  10.  
  11. .theme-default .nivoSlider {
  12.     position:relative;
  13.     background:#fff url(loading.gif) no-repeat 50% 50%;
  14.     margin-bottom:10px;
  15.     -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
  16.     -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
  17.     box-shadow: 0px 1px 5px 0px #4a4a4a;
  18.     border-radius:3px;
  19. }
  20. .theme-default .nivoSlider img {
  21.     position:absolute;
  22.     top:0px;
  23.     left:0px;
  24.     display:none;
  25. }
  26. .theme-default .nivoSlider a {
  27.     border:0;
  28.     display:block;
  29. }
  30.  
  31. .theme-default .nivo-controlNav {
  32.     text-align: center;
  33.     padding: 5px 0 10px;
  34. }
  35. .theme-default .nivo-controlNav a {
  36.     display:inline-block;
  37.     width:22px;
  38.     height:22px;
  39.     background:url(bullets.png) no-repeat;
  40.     /*text-indent:-9999px;*/
  41.     font-size:0px;
  42.     border:0;
  43.     margin: 0 2px;
  44. }
  45. .theme-default .nivo-controlNav a.active {
  46.     background-position:0 -22px;
  47. }
  48.  
  49. .theme-default .nivo-directionNav a {
  50.     display:block;
  51.     width:30px;
  52.     height:30px;
  53.     background:url(arrows.png) no-repeat;
  54.     /*text-indent:-9999px;*/
  55.     font-size:0px;
  56.     border:0;
  57.     opacity: 0;
  58.     -webkit-transition: all 200ms ease-in-out;
  59.     -moz-transition: all 200ms ease-in-out;
  60.     -o-transition: all 200ms ease-in-out;
  61.     transition: all 200ms ease-in-out;
  62. }
  63. .theme-default:hover .nivo-directionNav a { opacity: 1; }
  64. .theme-default a.nivo-nextNav {
  65.     background-position:-30px 0;
  66.     right:15px;
  67. }
  68. .theme-default a.nivo-prevNav {
  69.     left:15px;
  70. }
  71.  
  72. .theme-default .nivo-caption {
  73.     font-family: inherit;
  74. }
  75. .theme-default .nivo-caption a {
  76.     color:#fff;
  77.     border-bottom:1px dotted #fff;
  78. }
  79. .theme-default .nivo-caption a:hover {
  80.     color:#fff;
  81. }
  82.  
  83. .theme-default .nivo-controlNav.nivo-thumbs-enabled {
  84.     width: 100%;
  85. }
  86. .theme-default .nivo-controlNav.nivo-thumbs-enabled a {
  87.     width: auto;
  88.     height: auto;
  89.     background: none;
  90.     margin-bottom: 5px;
  91. }
  92. .theme-default .nivo-controlNav.nivo-thumbs-enabled img {
  93.     display: block;
  94.     width: 120px;
  95.     height: auto;
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement