Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.57 KB | None | 0 0
  1. #tabs {
  2.   overflow: hidden;
  3.   width: 100%;
  4.   margin: 0;
  5.   padding: 0;
  6.   list-style: none;
  7.   margin-left: 10px;
  8. }
  9.  
  10. #tabs li {
  11.   float: left;
  12.   margin: 0 .5em 0 0;
  13. }
  14.  
  15. #tabs a {
  16.   position: relative;
  17.   background: #ddd;
  18.   background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
  19.   background-image: -webkit-linear-gradient(top, #fff, #ddd);
  20.   background-image: -moz-linear-gradient(top, #fff, #ddd);
  21.   background-image: -ms-linear-gradient(top, #fff, #ddd);
  22.   background-image: -o-linear-gradient(top, #fff, #ddd);
  23.   background-image: linear-gradient(to bottom, #fff, #ddd);  
  24.   padding: .7em 3.5em;
  25.   float: left;
  26.   text-decoration: none;
  27.   color: #444;
  28.   text-shadow: 0 1px 0 rgba(255,255,255,.8);
  29.   -webkit-border-radius: 5px 0 0 0;
  30.   -moz-border-radius: 5px 0 0 0;
  31.   border-radius: 5px 0 0 0;
  32.   -moz-box-shadow: 0 2px 2px rgba(0,0,0,.4);
  33.   -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.4);
  34.   box-shadow: 0 2px 2px rgba(0,0,0,.4);
  35. }
  36.  
  37. #tabs a:hover,
  38. #tabs a:hover::after,
  39. #tabs a:focus,
  40. #tabs a:focus::after {
  41.   background: #fff;
  42. }
  43.  
  44. #tabs a:focus {
  45.   outline: 0;
  46. }
  47.  
  48. #tabs a::after {
  49.   content:'';
  50.   position:absolute;
  51.   z-index: 1;
  52.   top: 0;
  53.   right: -.5em;  
  54.   bottom: 0;
  55.   width: 1em;
  56.   background: #ddd;
  57.   background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
  58.   background-image: -webkit-linear-gradient(top, #fff, #ddd);
  59.   background-image: -moz-linear-gradient(top, #fff, #ddd);
  60.   background-image: -ms-linear-gradient(top, #fff, #ddd);
  61.   background-image: -o-linear-gradient(top, #fff, #ddd);
  62.   background-image: linear-gradient(to bottom, #fff, #ddd);  
  63.   -moz-box-shadow: 2px 2px 2px rgba(0,0,0,.4);
  64.   -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.4);
  65.   box-shadow: 2px 2px 2px rgba(0,0,0,.4);
  66.   -webkit-transform: skew(10deg);
  67.   -moz-transform: skew(10deg);
  68.   -ms-transform: skew(10deg);
  69.   -o-transform: skew(10deg);
  70.   transform: skew(10deg);
  71.   -webkit-border-radius: 0 5px 0 0;
  72.   -moz-border-radius: 0 5px 0 0;
  73.   border-radius: 0 5px 0 0;
  74. }
  75.  
  76. #tabs #current a {
  77.   background: #fff;
  78.   z-index: 3;
  79. }
  80.  
  81. #tabs #current a::after {
  82.   background: #fff;
  83.   z-index: 3;
  84. }
  85.  
  86. #content {
  87.     width: 900px;
  88.     margin: 0 auto;
  89.     background: #fff;
  90.     padding: 2em;
  91.     height: 220px;
  92.     position: relative;
  93.     z-index: 2;
  94.     -moz-border-radius: 0 5px 5px 5px;
  95.     -webkit-border-radius: 0 5px 5px 5px;
  96.     border-radius: 0 5px 5px 5px;
  97.     -moz-box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
  98.     -webkit-box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
  99.     box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
  100.     color: #000;
  101. }
  102.  
  103. #content .error {
  104.     float: left;
  105. }
  106.  
  107. #content .error .loading {
  108.     float: left;
  109. }
  110.  
  111. #content .error .data {
  112.     float: right;
  113.     margin-left: 20px;
  114. }
  115.  
  116. #content .error .data h2 {
  117.     text-shadow: 0px 1px 1px #4d4d4d; color: #222;
  118. }
  119.  
  120. /* ------------------------------------------------- */
  121.  
  122. #content ul.galeriaFotos {
  123.     margin: 0;
  124.     padding: 0;
  125. }
  126.  
  127. #content ul.galeriaFotos li {
  128.     list-style: none;
  129. }
  130.  
  131. #content ul.galeriaFotos li img.thumb {
  132.     /*give the thumbnails a frame*/
  133.     background-color:#680610; /*frame colour*/
  134.     padding: 6px; /*frame size*/
  135.     /*add a drop shadow to the frame*/
  136.     -webkit-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
  137.     -moz-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
  138.     box-shadow: 0 0 6px rgba(132, 132, 132, .75);
  139.     /*and give the corners a small curve*/
  140.     -webkit-border-radius: 4px;
  141.     -moz-border-radius: 4px;
  142.     border-radius: 4px;
  143.     float: left;
  144. }
  145.  
  146. #content ul.galeriaFotos li img.thumb:hover {
  147.     /*give the thumbnails a frame*/
  148.     background-color:#680610; /*frame colour*/
  149.     padding: 6px; /*frame size*/
  150.     /*add a drop shadow to the frame*/
  151.     -webkit-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
  152.     -moz-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
  153.     box-shadow: 0 0 6px rgba(132, 132, 132, .75);
  154.     /*and give the corners a small curve*/
  155.     -webkit-border-radius: 4px;
  156.     -moz-border-radius: 4px;
  157.     border-radius: 4px;
  158. }
  159.  
  160. #content ul.galeriaFotos li .galeria-data {
  161.     float: left;
  162.     margin-left: 20px;
  163.     margin-top: 10px;
  164. }
  165.  
  166. #content ul.galeriaFotos li .galeria-data a.title {
  167.     color: #680610;
  168.     font-family: Arial, Helvetica, sans-serif;
  169.     text-transform: uppercase;
  170.     font-size: 22px;
  171.     font-weight: bold;
  172.     line-height: 28px;
  173. }
  174.  
  175. #content ul.galeriaFotos li .galeria-data a.title:hover {
  176.     color: #8c0915;
  177. }
  178.  
  179. #content ul.galeriaFotos li .galeria-data span.fotos-qtd {
  180.     color: #680610;
  181.     font-weight: bold;
  182. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement