Created
August 31, 2015 04:00
-
-
Save waystilos/9c8e7ade94475889541c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// variables | |
//Colors | |
$white: #fff; | |
$black: #000000; | |
$red: #ff0000; | |
//Font Families | |
$arial: Arial, Helvetica, sans-serif; | |
$comic: "Comic Sans MS", cursive, sans-serif; | |
//////////Variables end///////////// | |
//nesting | |
/* css */ | |
.entry p { | |
font-size: 2em; | |
font-family: $comic; | |
} | |
.entry h1 { | |
font-size: 4em; | |
color: tomato; | |
} | |
/* Sassify */ | |
.entry { | |
p { | |
font-size: 2em; | |
font-weight: 4em; | |
} | |
h1 { | |
font-size: 4em; | |
color: tomato; | |
} | |
} | |
////////Nesting End/////////// |
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
/* css */ | |
.entry p { | |
font-size: 2em; | |
font-family: "Comic Sans MS", cursive, sans-serif; | |
} | |
.entry h1 { | |
font-size: 4em; | |
color: tomato; | |
} | |
/* Sassify */ | |
.entry p { | |
font-size: 2em; | |
font-weight: 4em; | |
} | |
.entry h1 { | |
font-size: 4em; | |
color: tomato; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment