Created
March 31, 2014 03:45
-
-
Save dancasttro/9884868 to your computer and use it in GitHub Desktop.
Structure of my files preprocessors(Stylus/Sass) for projects
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
. | |
├── base | |
│ ├── config.styl | |
│ ├── mixins.styl | |
│ ├── helpers.styl | |
│ └── grid.styl | |
├── core | |
│ ├── reset.styl | |
│ ├── forms.styl | |
│ ├── tables.styl | |
│ └── typography.styl | |
├── layout | |
│ ├── main.styl | |
│ ├── legacy.styl | |
│ └── responsive.styl | |
├── print.styl | |
└── style.styl | |
// BASE | |
// ------------------- | |
// CONFIG................................. Configuration initial project | |
// MIXINS................................. General Mixins | |
// HELPERS................................ Helpers for your project | |
// GRID................................... Initialize Grid System (Semantic.gs) | |
// CORE | |
// ------------------- | |
// RESET.................................. Normalize CSS | |
// FORMS.................................. Forms and inputs | |
// TABLES................................. Basic Table | |
// TYPOGRAPHY............................. Text, Headings and misc types | |
// LAYOUT | |
// ------------------- | |
// MAIN................................... Layout goes here | |
// LEGACY................................. Polyfills with Modernizr (Legacy Support) goes here | |
// RESPONSIVE............................. Media queries goes here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment