Created
November 16, 2010 18:10
-
-
Save andyfowler/702194 to your computer and use it in GitHub Desktop.
A sample of some CSS, written for less.js
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
@import 'mixins.less'; | |
nav { | |
ul { | |
list-style: none; | |
li { | |
float: left; | |
color: @tan; | |
.rounded-corners(5px); | |
&.current-page { | |
.gradient(#aaaaaa, #cccccc); | |
color: @brown; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment