Created
April 24, 2012 12:54
-
-
Save pahund/2479405 to your computer and use it in GitHub Desktop.
slide out tabs
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
/** | |
* slide out tabs | |
*/ | |
li { | |
float: left; | |
width: 100px; | |
height: 10px; | |
list-style: none; | |
display: block; | |
border: 3px solid black; | |
padding: 5px; | |
margin-right: 4px; | |
border-radius: 10px 10px 0 0; | |
position: relative; | |
} | |
li:hover { | |
transition: 1s; | |
height: 20px; | |
top: -10px; | |
} |
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
<ul> | |
<li>Photos</li> | |
<li>Videos</li> | |
<li>Music</li> | |
<li>Lyrics</li> | |
</ul> |
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
{"view":"split","fontsize":"70","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment