Skip to content

Instantly share code, notes, and snippets.

@brenopolanski
Forked from dancasttro/structure-css
Created October 7, 2015 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brenopolanski/7feee86406cb0751836e to your computer and use it in GitHub Desktop.
Save brenopolanski/7feee86406cb0751836e 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