Created
September 12, 2012 18:51
-
-
Save blizzerand/3709045 to your computer and use it in GitHub Desktop.
This file contains 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
.sidebar{ | |
@if 5 < 3 { border: 2px dotted; } | |
@if 2*2 ==0 { border: 1px solid; } | |
@0<25 { border: 3px double; } | |
} | |
is compiled to | |
.sidebar{ | |
border: 3px double | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment