Last active
August 29, 2015 14:06
-
-
Save darrenkopp/90fc356ec69f1830ff4f to your computer and use it in GitHub Desktop.
How To Use SassyStudio
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
// this is a partial file. when you save this file, no .css file will be created for it as it's intent is only to be | |
// @include'd in other files. | |
// | |
// SassyStudio will, however, recognize that this file is included in root.scss, so when this file is saved, it will re-generate | |
// root.css for you. | |
.account { | |
.page-title { | |
font-size: 1.5em; | |
} | |
} |
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
// here we have a root sass file. anytime you save this file, SassyStudio will emit a single file named root.css | |
body { | |
font-size: 1em | |
} | |
// here we reference our partials. we are using the shorthand syntax which does not require you to specify the _ prefix | |
// for partials, or the .scss file extension | |
@include "account"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment