Last active
December 17, 2015 14:09
-
-
Save surefirewebserv/5622149 to your computer and use it in GitHub Desktop.
Style for WooTabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*-------------------------------------------------------------------------------------------*/ | |
/* 9. WOODOJO */ | |
/*-------------------------------------------------------------------------------------------*/ | |
/* WooDojo Tabs */ | |
.widget_woodojo_tabs h3 { | |
border-bottom: none; | |
} | |
.widget_woodojo_tabs .tabbable .nav { | |
margin: 0 0 -1px; | |
border: none!important; | |
} | |
.widget_woodojo_tabs .tabbable img { | |
border: 1px solid #ccc; | |
padding: 3px; | |
} | |
.widget_woodojo_tabs .tabbable .nav li a { | |
color: #999; | |
display: block; | |
float: left; | |
border-color: transparent; | |
border-width: 1px 1px 0; | |
padding: 5px 6px 3px; | |
text-transform: uppercase; | |
font-weight: bold; | |
font-size: 11px; | |
text-shadow: 1px 1px 0 #fff; | |
} | |
.widget_woodojo_tabs .tabbable .nav li.active a, | |
.widget_woodojo_tabs .tabbable .nav li a:hover { | |
text-decoration: none; | |
border-color: #d9d9d9!important; | |
border-width: 1px 1px 0; | |
color: #666; | |
background: #ffffff; | |
background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff)); | |
background: -webkit-linear-gradient(#f2f2f2, #ffffff); | |
background: -moz-linear-gradient(center top, #f2f2f2 0%, #ffffff 100%); | |
background: -moz-gradient(center top, #f2f2f2 0%, #ffffff 100%); | |
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#f2f2f2, endColorstr=#ffffff); | |
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f2f2f2, endColorstr=#ffffff)"; | |
box-shadow: inset 0 1px 0 #ffffff, 0 -1px 3px rgba(0, 0, 0, 0.1); | |
-moz-box-shadow: inset 0 1px 0 #ffffff, 0 -1px 3px rgba(0, 0, 0, 0.1); | |
-webkit-box-shadow: inset 0 1px 0 #ffffff, 0 -1px 3px rgba(0, 0, 0, 0.1); | |
border-bottom: none!important; | |
} | |
.widget_woodojo_tabs .tabbable .tab-content { | |
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); | |
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); | |
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); | |
} | |
.widget_woodojo_tabs .tabbable .tab-content ul { | |
padding: 0; | |
} | |
.widget_woodojo_tabs .tabbable .tab-content li { | |
margin: 0; | |
background: #fff; | |
} | |
.widget_woodojo_tabs .tabbable .tab-pane-tags { | |
padding: 10px; | |
background: #fff; | |
border: 1px solid #d9d9d9; | |
} | |
.widget_woodojo_tabs .tabbable .tab-content ul { | |
margin: 0; | |
border: 1px solid #d9d9d9; | |
border-width: 1px; | |
list-style: none; | |
padding-left: 0px; | |
} | |
.widget_woodojo_tabs .tabbable .tab-content li { | |
padding: 10px; | |
} | |
.widget_woodojo_tabs .tabbable .tab-content li a { | |
color: #555; | |
font: bold 13px/18px "Helvetica Neue", Helvetica, Arial, sans-serif; | |
padding: 0; | |
} | |
.widget_woodojo_tabs .tabbable .tab-content li span.meta { | |
display: block; | |
font: 300 11px/20px "Helvetica Neue", Helvetica, Arial, sans-serif; | |
text-transform: uppercase; | |
color: #777; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment