Skip to content

Instantly share code, notes, and snippets.

@nielsdoorn
Created March 20, 2015 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nielsdoorn/3a5f31b28c839aa41286 to your computer and use it in GitHub Desktop.
Save nielsdoorn/3a5f31b28c839aa41286 to your computer and use it in GitHub Desktop.
Untitled
.menu {
list-style-type: none;
padding: 10px 0;
margin: 0;
background: linear-gradient(90deg, yellow 40px, rgba(0,0,0,0) 40px);;
}
.menuitem {
margin-top: 50px;
margin-left: 10px;
transition: 0.2s;
}
.menuitem:hover {
margin-left: 20px;
}
a {
text-decoration: none;
color: white;
background-color: purple;
padding: 2px 20px 2px 5px;
border: 1px solid black;
transition: .8s;
}
a:hover {
background-color: red;
}
<nav>
<ul class="menu">
<li class="menuitem"><a href="">Agenda</a></li>
<li class="menuitem"><a href="">Drugsbeleid</a></li>
<li class="menuitem"><a href="">Kaartverkoop</a></li>
<li class="menuitem"><a href="">Line-up</a></li>
<li class="menuitem"><a href="">Praktische informatie</a></li>
<li class="menuitem"><a href="">Contact</a></li>
</ul>
</nav>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment