foo.be/css/main.scss

39 lines
562 B
SCSS
Raw Normal View History

2015-12-03 01:59:10 +00:00
---
# 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/social',
'components/buttons',
'components/footer';
2015-12-04 00:12:42 +00:00
// Themes
@import
'themes/blue',
'themes/green',
'themes/grey',
'themes/orange',
'themes/purple';
2015-12-03 01:59:10 +00:00
// Vendor
@import
'vendor/syntax-highlighting';