Advertisement
Guest User

Untitled

a guest
May 28th, 2011
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. /*=================================*/
  2. /* Nivo Slider Demo
  3. /* November 2010
  4. /* By: Gilbert Pellegrom
  5. /* http://dev7studios.com
  6. /*=================================*/
  7.  
  8. /*====================*/
  9. /*=== Reset Styles ===*/
  10. /*====================*/
  11. html, body, div, span, applet, object, iframe,
  12. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  13. a, abbr, acronym, address, big, cite, code,
  14. del, dfn, em, font, img, ins, kbd, q, s, samp,
  15. small, strike, strong, sub, sup, tt, var,
  16. dl, dt, dd, ol, ul, li,
  17. fieldset, form, label, legend,
  18. table, caption, tbody, tfoot, thead, tr, th, td {
  19. margin:0;
  20. padding:0;
  21. border:0;
  22. outline:0;
  23. font-weight:inherit;
  24. font-style:inherit;
  25. font-size:100%;
  26. font-family:inherit;
  27. vertical-align:baseline;
  28. }
  29. body {
  30. line-height:1;
  31. color:black;
  32. background:white;
  33. }
  34. table {
  35. border-collapse:separate;
  36. border-spacing:0;
  37. }
  38. caption, th, td {
  39. text-align:left;
  40. font-weight:normal;
  41. }
  42. blockquote:before, blockquote:after,
  43. q:before, q:after {
  44. content:"";
  45. }
  46. blockquote, q {
  47. quotes:"" "";
  48. }
  49. /* HTML5 tags */
  50. header, section, footer,
  51. aside, nav, article, figure {
  52. display: block;
  53. }
  54.  
  55. /*===================*/
  56. /*=== Main Styles ===*/
  57. /*===================*/
  58. body {
  59. font:14px/1.6 Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
  60. color:#2d3536;
  61. background:#e8e0c0 url(images/background.png) repeat;
  62. text-shadow:0 1px 0 #fff;
  63. }
  64.  
  65. a, a:visited {
  66. color:#2d3536;
  67. text-decoration:none;
  68. border-bottom:1px dotted #826a4d;
  69. }
  70. a:hover, a:active {
  71. color:#9e805c;
  72. text-decoration:none;
  73. }
  74.  
  75. #dev7link {
  76. position:absolute;
  77. top:0;
  78. left:50px;
  79. background:url(images/dev7logo.png) no-repeat;
  80. width:60px;
  81. height:67px;
  82. border:0;
  83. display:block;
  84. text-indent:-9999px;
  85. }
  86.  
  87. /*============================*/
  88. /*=== Custom Slider Styles ===*/
  89. /*============================*/
  90. #slider-wrapper {
  91. background:url(images/slider.png) no-repeat;
  92. width:998px;
  93. height:392px;
  94. margin:0 auto;
  95. padding-top:74px;
  96. margin-top:50px;
  97. }
  98.  
  99. #slider {
  100. position:relative;
  101. width:618px;
  102. height:246px;
  103. margin-left:190px;
  104. background:url(images/slider/loading.gif) no-repeat 50% 50%;
  105. }
  106. #slider img {
  107. position:absolute;
  108. top:0px;
  109. left:0px;
  110. display:none;
  111. }
  112. #slider a {
  113. border:0;
  114. display:block;
  115. }
  116.  
  117. .nivo-controlNav {
  118. position:absolute;
  119. left:260px;
  120. bottom:-42px;
  121. }
  122. .nivo-controlNav a {
  123. display:block;
  124. width:22px;
  125. height:22px;
  126. background:url(images/slider/bullets.png) no-repeat;
  127. text-indent:-9999px;
  128. border:0;
  129. margin-right:3px;
  130. float:left;
  131. }
  132. .nivo-controlNav a.active {
  133. background-position:0 -22px;
  134. }
  135.  
  136. .nivo-directionNav a {
  137. display:block;
  138. width:30px;
  139. height:30px;
  140. background:url(images/slider/arrows.png) no-repeat;
  141. text-indent:-9999px;
  142. border:0;
  143. }
  144. a.nivo-nextNav {
  145. background-position:-30px 0;
  146. right:15px;
  147. }
  148. a.nivo-prevNav {
  149. left:15px;
  150. }
  151.  
  152. .nivo-caption {
  153. text-shadow:none;
  154. font-family: Helvetica, Arial, sans-serif;
  155. }
  156. .nivo-caption a {
  157. color:#efe9d1;
  158. text-decoration:underline;
  159. }
  160.  
  161. /*====================*/
  162. /*=== Other Styles ===*/
  163. /*====================*/
  164. .clear {
  165. clear:both;
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement