Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2013
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.03 KB | None | 0 0
  1. /*
  2.     Resets defualt browser settings
  3.     reset.css
  4. */
  5. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-style:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; }
  6. :focus { outline:0; }
  7. a:active { outline:none; }
  8. body { line-height:1; color:black; background:white; }
  9. ol,ul { list-style:none; }
  10. table { border-collapse:separate; border-spacing:0; }
  11. caption,th,td { text-align:left; font-weight:normal; }
  12. blockquote:before,blockquote:after,q:before,q:after { content:""; }
  13. blockquote,q { quotes:"" ""; }
  14.  
  15. /*
  16.     Page style
  17. */
  18.  
  19. body {
  20.     font:normal 62.5%/1.5 Helvetica, Arial, sans-serif;
  21.     letter-spacing:0;
  22.     color:#434343;
  23.     background:#efefef url(../img/background.png) repeat top center;
  24.     padding:20px 0;
  25.     position:relative;
  26.     text-shadow:0 1px 0 rgba(255,255,255,.8);
  27.     -webkit-font-smoothing: subpixel-antialiased;
  28. }
  29.  
  30. #container {
  31.     width:50px;
  32.     /* padding:10px; */
  33.     margin:0 auto;
  34.     position:relative;
  35.     z-index:0;
  36. }
  37.  
  38. #example {
  39.     width:50px;
  40.     height:50px;
  41.     position:relative;
  42. }
  43.  
  44. /* #ribbon {
  45.     position:absolute;
  46.     top:-3px;
  47.     left:-15px;
  48.     z-index:500;
  49. } */
  50.  
  51. #frame {
  52.     position:absolute;
  53.     z-index:0;
  54.     width:50px;
  55.     height:50px;
  56.     /* top:-3px;
  57.     left:-35px; */
  58. }
  59.  
  60. /*
  61.     Slideshow
  62. */
  63.  
  64. #slides {
  65.     position:absolute;
  66.     /* top:15px; */
  67.     /*left:-27px;*/
  68.     z-index:100;
  69. }
  70.  
  71. /*
  72.     Slides container
  73.     Important:
  74.     Set the width of your slides container
  75.     Set to display none, prevents content flash
  76. */
  77.  
  78. .slides_container {
  79.     width:50px;
  80.     overflow:hidden;
  81.     position:relative;
  82.     display:none;
  83. }
  84.  
  85. /*
  86.     Each slide
  87.     Important:
  88.     Set the width of your slides
  89.     If height not specified height will be set by the slide content
  90.     Set to display block
  91. */
  92.  
  93. .slides_container a {
  94.     width:50px;
  95.     height:50px;
  96.     display:block;
  97. }
  98.  
  99. .slides_container a img {
  100.     display:block;
  101. }
  102.  
  103. /*
  104.     Next/prev buttons
  105. */
  106.  
  107. #slides .next,#slides .prev {
  108.     position:absolute;
  109.     top:5px;
  110.     left:-30px;
  111.     width:24px;
  112.     height:43px;
  113.     display:block;
  114.     z-index:101;
  115. }
  116.  
  117. #slides .next {
  118.     left:55px;
  119. }
  120.  
  121. /*
  122.     Pagination
  123. */
  124.  
  125. .pagination {
  126.     margin:26px auto 0;
  127.     width:100px;
  128. }
  129.  
  130. .pagination li {
  131.     float:left;
  132.     margin:0 1px;
  133.     list-style:none;
  134. }
  135.  
  136. .pagination li a {
  137.     display:block;
  138.     width:12px;
  139.     height:0;
  140.     padding-top:12px;
  141.     background-image:url(../img/pagination.png);
  142.     background-position:0 0;
  143.     float:left;
  144.     overflow:hidden;
  145. }
  146.  
  147. .pagination li.current a {
  148.     background-position:0 -12px;
  149. }
  150.  
  151. /*
  152.     Footer
  153. */
  154.  
  155. #footer {
  156.     text-align:center;
  157.     width:120px;
  158.     margin-top:9px;
  159.     padding:4.5px 0 18px;
  160.     border-top:1px solid #dfdfdf;
  161. }
  162.  
  163. #footer p {
  164.     margin:4.5px 0;
  165.     font-size:1.0em;
  166. }
  167.  
  168. /*
  169.     Anchors
  170. */
  171.  
  172. a:link,a:visited {
  173.     color:#599100;
  174.     text-decoration:none;
  175. }
  176.  
  177. a:hover,a:active {
  178.     color:#599100;
  179.     text-decoration:underline;
  180. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement