Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created November 11, 2014 18:45
Show Gist options
  • Save prof3ssorSt3v3/2a75663e33cb043865de to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/2a75663e33cb043865de to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
/***********
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