Skip to content

Instantly share code, notes, and snippets.

@andreimoment
Created December 10, 2012 21:15
Show Gist options
  • Save andreimoment/4253490 to your computer and use it in GitHub Desktop.
Save andreimoment/4253490 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
// Sass v3.2.3
$menu-text-color: #333;
$menu-bg-color: #ccc;
#navbar {
width: 80%;
height: 23px;
ul {list-style:none;}
li {float:left;
a {
font-weight: bold;
color: $menu-text-color;
background-color: $menu-bg-color;
}
a.current-item {
color: invert($menu-text-color);
background-color: invert($menu-bg-color);
}
}
}
#navbar {
width: 80%;
height: 23px;
}
#navbar ul {
list-style: none;
}
#navbar li {
float: left;
}
#navbar li a {
font-weight: bold;
color: #333333;
background-color: #cccccc;
}
#navbar li a.current-item {
color: #cccccc;
background-color: #333333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment