Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created September 27, 2012 18:01
Show Gist options
  • Save ynonp/3795435 to your computer and use it in GitHub Desktop.
Save ynonp/3795435 to your computer and use it in GitHub Desktop.
Untitled
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; }
}
<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>
{"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