mirror of
https://github.com/adulau/foo.be.git
synced 2024-11-22 01:37:05 +00:00
39 lines
587 B
SCSS
Executable file
39 lines
587 B
SCSS
Executable file
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
@charset "utf-8";
|
|
|
|
// Helpers
|
|
@import
|
|
'helpers/variables',
|
|
'helpers/mixins';
|
|
|
|
// Base
|
|
@import
|
|
'base/reset';
|
|
|
|
// Utilities
|
|
@import
|
|
'utilities/layout';
|
|
|
|
// Components
|
|
@import
|
|
'components/header',
|
|
'components/navigation',
|
|
'components/article',
|
|
'components/archives',
|
|
'components/social',
|
|
'components/buttons',
|
|
'components/footer';
|
|
|
|
// Themes
|
|
@import
|
|
'themes/blue',
|
|
'themes/green',
|
|
'themes/grey',
|
|
'themes/orange',
|
|
'themes/purple';
|
|
|
|
// Vendor
|
|
@import
|
|
'vendor/syntax-highlighting';
|