Created
November 11, 2014 18:45
-
-
Save prof3ssorSt3v3/2a75663e33cb043865de to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
/*********** | |
Multi-line comments are saved in css | |
***********/ | |
//single-line comments do NOT get moved | |
//@import "variables.scss"; | |
//@import will place all the contents of that file | |
//inside this file | |
$f-size: 3rem; | |
h2{ | |
line-height: $f-size; | |
.highlight{ | |
color:red; | |
} | |
.highlight &{ | |
color:blue; | |
} | |
} | |
a{ | |
color:red; | |
font:{ | |
size:$f-size; | |
style:italic; | |
family:Arial; | |
weight:bold; | |
} | |
&:hover{ | |
color:gold; | |
} | |
} | |
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
/*********** | |
Multi-line comments are saved in css | |
***********/ | |
h2 { | |
line-height: 3rem; | |
} | |
h2 .highlight { | |
color: red; | |
} | |
.highlight h2 { | |
color: blue; | |
} | |
a { | |
color: red; | |
font-size: 3rem; | |
font-style: italic; | |
font-family: Arial; | |
font-weight: bold; | |
} | |
a:hover { | |
color: gold; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment