Skip to content

Instantly share code, notes, and snippets.

@dancasttro
Created March 31, 2014 03:45
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dancasttro/9884868 to your computer and use it in GitHub Desktop.
Save dancasttro/9884868 to your computer and use it in GitHub Desktop.
Structure of my files preprocessors(Stylus/Sass) for projects
.
├── 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