First commit

This commit is contained in:
Andros Fenollosa
2019-02-26 10:16:32 +01:00
commit b2583b4aa7
22 changed files with 797 additions and 0 deletions

5
sass/layout/README.md Normal file
View File

@ -0,0 +1,5 @@
# Layout
The `layout/` folder contains everything that takes part in laying out the site or application. This folder could have stylesheets for the main parts of the site (header, footer, navigation, sidebar…), the grid system or even CSS styles for all the forms.
Reference: [Sass Guidelines](http://sass-guidelin.es/) > [Architecture](http://sass-guidelin.es/#architecture) > [Layout folder](http://sass-guidelin.es/#layout-folder)

3
sass/layout/_footer.scss Normal file
View File

@ -0,0 +1,3 @@
// -----------------------------------------------------------------------------
// This file contains all styles related to the footer of the site/application.
// -----------------------------------------------------------------------------

3
sass/layout/_header.scss Normal file
View File

@ -0,0 +1,3 @@
// -----------------------------------------------------------------------------
// This file contains all styles related to the header of the site/application.
// -----------------------------------------------------------------------------