foo.be/css/main.scss

41 lines
611 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
2022-11-12 09:27:20 +00:00
// 'utilities/tables',
2015-12-03 01:59:10 +00:00
'utilities/layout';
// Components
@import
'components/header',
'components/navigation',
'components/article',
2015-12-30 15:31:33 +00:00
'components/archives',
2015-12-03 01:59:10 +00:00
'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';