Created
September 27, 2012 18:01
-
-
Save ynonp/3795435 to your computer and use it in GitHub Desktop.
Untitled
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 { | |
list-style: none; | |
background:#666; | |
} | |
ul li { | |
display:inline-block; | |
padding:20px | |
} | |
ul a { | |
color: white;; | |
text-decoration: none; | |
} | |
ul li:hover { | |
background:orange; | |
} | |
select { | |
width:100%; | |
display:none; | |
} | |
@media (max-width:479px) { | |
.phone { display: block; } | |
.desktop { display: none; } | |
} | |
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 class="desktop"> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">About</a></li> | |
<li><a href="#">Gallery</a></li> | |
<li><a href="#">Contact</a></li> | |
</ul> | |
<select class="phone"> | |
<option value="#">Home</option> | |
<option value="#">About</option> | |
<option value="#">Gallery</option> | |
<option value="#">Contact</option> | |
</select> | |
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":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment