38 lines
561 B
Sass
38 lines
561 B
Sass
|
@charset "UTF-8"
|
||
|
|
||
|
// 1. Configuration and helpers
|
||
|
|
||
|
@import abstracts/variables
|
||
|
@import abstracts/mixins
|
||
|
|
||
|
// 2. Vendors
|
||
|
|
||
|
@import vendors/normalize
|
||
|
|
||
|
// 3. Base stuff
|
||
|
|
||
|
@import base/base
|
||
|
@import base/fonts
|
||
|
@import base/typography
|
||
|
@import base/helpers
|
||
|
|
||
|
// 4. Layout-related sections
|
||
|
|
||
|
@import mobile/layout/header
|
||
|
@import mobile/layout/footer
|
||
|
|
||
|
// 5. Components
|
||
|
|
||
|
@import mobile/components/alert
|
||
|
@import mobile/components/button
|
||
|
|
||
|
// 6. Page-specific styles
|
||
|
|
||
|
@import mobile/pages/home
|
||
|
@import mobile/pages/contact
|
||
|
|
||
|
// 7. Themes
|
||
|
|
||
|
@import themes/light
|
||
|
@import themes/dark
|