
Untitled
By: a guest on
Jun 27th, 2012 | syntax:
None | size: 1.95 KB | hits: 11 | expires: Never
body {
background: #392423;
padding-top: 5em;
}
.tabs {
position: relative;
/* min-height: 200px;*/
clear: both;
color: #000;
text-align: center;
list-style: none;
padding: 0;
}
.tab {
float: left;
}
.tab label {
background: #eee;
border: 1px solid #ccc;
margin-left: 2px;
position: relative;
left: 1px;
cursor: pointer;
font: 12px/100% Arial, Helvetica, sans-serif;
padding: .2em 1.5em;
-webkit-box-shadow: inset 0 0px 3px #000;
-moz-box-shadow: inset 0 0px 3px #000;
box-shadow: inset 0 0px 3px #000;
color: #a0a0a0;
border: 1px solid #666;
background: #4e4e4e;
background: -webkit-gradient(linear, left top, left bottom, from(#4e4e4e), to(#000));
background: -moz-linear-gradient(top, #4e4e4e, #000);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e4e4e', endColorstr='#000');
}
.tabs .tab:first-child label {
-webkit-border-radius-topleft: 25px 50px;
-moz-border-radius-topleft: 25px 50px;
border-top-left-radius: 25px 50px;
}
.tabs .tab:last-child label {
-webkit-border-radius-topright: 25px 50px;
-moz-border-radius-topright: 25px 50px;
border-top-right-radius: 25px 50px;
}
.tab [type=radio] {
display: none;
}
.tabs .content {
position: absolute;
top: 19px;
left: 0;
background: #B4A79E;
right: 0;
bottom: 0;
padding: 20px;
border: 1px solid #666;
border-top: 1px solid #FFF;
display: none;
}
.tabs [type=radio]:checked ~ label {
padding: .3em 1.5em;
top: 0;
z-index: 2;
color: #FFF;
border-color: #FFF;
border-bottom: none;
background: #747474;
background: -webkit-gradient(linear, left top, left bottom, from(#747474), to(#333));
background: -moz-linear-gradient(top, #747474, #333);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#747474', endColorstr='#333');
}
.tabs [type=radio]:checked ~ label ~ .content {
z-index: 1;
display: block;
}