Last active
August 29, 2015 14:09
-
-
Save lunelson/389327f215796047dd33 to your computer and use it in GitHub Desktop.
Alphabetically-ordered partials for ITCSS
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
// _____ _____ _____ _____ _____ | |
// |_ _|_ _/ __ \/ ___/ ___| | |
// | | | | | / \/\ `--.\ `--. | |
// | | | | | | `--. \`--. \ | |
// _| |_ | | | \__/\/\__/ /\__/ / | |
// \___/ \_/ \____/\____/\____/ | |
// file partials, in specificity- and alphabetical-order | |
@import "avant.scss"; // settings, functions, mixins | |
@import "base.scss"; // setup routines; universal, html, body, etc. | |
@import "elements.scss"; // element styles from headings to tables, inputs -- in support of ui patterns | |
@import "layouts.scss"; // page level layout setups | |
@import "navigation.scss"; // always unique; but belongs more or less here in the stack | |
@import "objects.scss"; // unit- or module- level stuff, between layout and ui | |
@import "ui-buttons.scss"; // ui-level styles | |
@import "ui-forms.scss"; // etc. | |
@import "ui-slider.scss"; // etc. | |
@import "utils.scss"; // overrides / helpers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment