Created
February 19, 2015 15:23
-
-
Save zurie/42175aa8e95ac80e4f6e to your computer and use it in GitHub Desktop.
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
| /* Tabbed Box */ | |
| .tabContainer { | |
| display:block; | |
| margin:0; | |
| padding:0; | |
| } | |
| .tabDesc { | |
| display:block; | |
| margin:0; | |
| padding:10px 10px 0 10px; | |
| width:280px; | |
| border:1px solid #cfcfcf; | |
| border-top:none; | |
| background:#ffffff; | |
| min-height:200px; | |
| overflow:auto; | |
| clear:both; | |
| } | |
| .ie7 .tabDesc { | |
| width: 278px; | |
| } | |
| .tab_container { | |
| border:1px solid #999; | |
| border-top:none; | |
| overflow:hidden; | |
| clear:both; | |
| float:left; | |
| width:100%; | |
| background:#fff; | |
| } | |
| .tab_content { | |
| padding: 0 0; | |
| font-size: 1.2em; | |
| } | |
| ul.tabbed-content { | |
| list-style:none; | |
| height:40px; | |
| border-bottom:1px solid #CFCFCF; | |
| border-left:1px solid #CFCFCF; | |
| margin:0; | |
| padding:0; | |
| float: left; | |
| } | |
| ul.tabbed-content li { | |
| float:left; | |
| height:40px; | |
| width:100px; | |
| line-height:40px; | |
| border:1px solid #CFCFCF; | |
| border-left:none; | |
| overflow:hidden; | |
| position:relative; | |
| background:#E8E8E8; | |
| margin:0 0 -5px; | |
| padding:0; | |
| } | |
| ul.tabbed-content li.last-tab { | |
| width:98px; | |
| } | |
| .ie7 ul.tabbed-content li { | |
| width: 100px; | |
| } | |
| .ie7 ul.tabbed-content li.last-tab { | |
| width: 96px; | |
| } | |
| ul.tabbed-content li a { | |
| text-decoration:none; | |
| color:#5e5e5e; | |
| display:block; | |
| font-size:12px; | |
| text-align:center; | |
| border:1px solid #fff; | |
| outline:none; | |
| } | |
| ul.tabbed-content li a:hover { | |
| background: #E3E3E3; | |
| } | |
| html ul.tabbed-content li.active, html ul.tabbed-content li.active a:hover { | |
| background: #fff; | |
| border-bottom: 1px solid #fff; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment