Skip to content

Instantly share code, notes, and snippets.

@machal
Created March 31, 2014 12:36
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 machal/9891340 to your computer and use it in GitHub Desktop.
Save machal/9891340 to your computer and use it in GitHub Desktop.
nav#main {
position: absolute; top: 27px; left: 230px;
}
/* Stylus will stop compilation here and report error on row 2 without explanation */
nav#main a {
margin-right: 20px;
padding: 6px 10px;
border: 1px solid #444; border-radius: 3px;
color: #fff; text-transform: uppercase; font-size: 13px; text-decoration: none;
-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
}
nav#main a:hover {
background-color: #333;
}
nav#main a.current {
background-color: #fff;
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment