47 lines
833 B
SCSS
47 lines
833 B
SCSS
@charset "UTF-8";
|
|
|
|
// 1. Configuration and helpers
|
|
@import
|
|
'abstracts/variables',
|
|
'abstracts/functions',
|
|
'abstracts/mixins';
|
|
|
|
// 2. Vendors
|
|
@import
|
|
'vendors/normalize';
|
|
|
|
// 3. Base stuff
|
|
@import
|
|
'base/base',
|
|
'base/fonts',
|
|
'base/typography',
|
|
'base/helpers';
|
|
|
|
// 4. Layout-related sections
|
|
@import
|
|
'layout/header',
|
|
'layout/footer';
|
|
|
|
// 5. Components
|
|
@import
|
|
'components/switch-theme',
|
|
'components/socials',
|
|
'components/buttons',
|
|
'components/newsletter',
|
|
'components/pagination',
|
|
'components/draft-label',
|
|
'components/clipboard',
|
|
'components/code-highlight',
|
|
'components/markdown',
|
|
'components/toc',
|
|
'components/page-header';
|
|
|
|
// 6. Page-specific styles
|
|
@import
|
|
'pages/home',
|
|
'pages/contact',
|
|
'pages/single',
|
|
'pages/terms',
|
|
'pages/errors',
|
|
'pages/post-list',
|
|
'pages/project-list'; |