Skip to content

CSS guideline

Valentyn Dubin edited this page Mar 7, 2021 · 81 revisions

Review

CSS guideline

Review

FLOCSS

🌎 Basic concept

Foundation Layout Object CSS - CSS design concept that takes advantage of OOCSS, BEM, and SMACSS. CSS design concept often used in Japan devised by Hiroki tani CSS organization methodology.

πŸ“‚ File structure

style
   └── foundation            /* Manages the default style of the entire site
   |     β”œβ”€β”€ _reset.sass
   |     β”œβ”€β”€ _base.sass
   |     β”œβ”€β”€ _variable.sass  /* Variables that can be used throughout the site
   |     └── _mixins.sass    /* Manages mixns that can be used throughout the site
   └── layout                /* Manages areas that make up each page and common to the entire site
   |     β”œβ”€β”€ _base.sass
   |     β”œβ”€β”€ _variable.sass   
   |     └── _mixins.sass    
   └── object                /* Manages modules with reusable throughout the entire site patterns
   |     β”œβ”€β”€ component
   |     β”œβ”€β”€ project   
   |     └── utility    
   
   
  
    

Clone this wiki locally