Created
December 10, 2012 21:15
-
-
Save andreimoment/4253490 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
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
// 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); | |
} | |
} | |
} |
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
#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