mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 17:30:00 +00:00
7f7943d2fc
* feat(dark mode): set up first set of colors * feat(dark mode): define state colours * 🧹 * feat(dark mode): variablify all teh wordz * feat(dark mode): set colors on body * feat(dark mode): replace hard coded color value * feat(dark mode): 🌑 * feat(a11y): update link focus styles - restores visible focus in windows high contrast mode - increases visibility in boxes with bg colour * feat(dark mode): enable postcss * 💅 * feat(dark mode): add user control * chore: use generic headline name * feat(dark mode): hide switch until script loads * feat(dark mode): increase link contrast * add content warning to footer nav partial * feat(dark mode): replace hard coded colour value in alertbox * feat(dark mode): tone down text colour * feat(dark mode): properly invert code elements * 🧹 move box styles into own partial * feat(dark mode): use darker colour as background for links
31 lines
913 B
SCSS
31 lines
913 B
SCSS
@charset 'UTF-8';
|
|
|
|
// 1. Configuration and helpers
|
|
@import 'abstracts/variables', 'abstracts/functions', 'abstracts/mixins',
|
|
'abstracts/universal-selector';
|
|
|
|
// 2. Vendors
|
|
// @import
|
|
// 'vendors/normalize';
|
|
|
|
// 3. Base stuff
|
|
@import 'base/custom-properties', 'base/fonts', 'base/base', 'base/selection',
|
|
'base/typography', './base/a', 'base/helpers', 'base/radio-buttons', 'base/code';
|
|
|
|
// 4. Layout-related sections
|
|
@import 'structures/header', 'structures/footer', 'structures/grid',
|
|
'structures/multi-column', 'structures/table-of-content',
|
|
'./structures/definition-content', './structures/definition-navigation';
|
|
|
|
// 5. Components
|
|
@import 'components/word', './components/box', 'components/lists', 'components/definitions',
|
|
'components/flag', 'components/alertbox';
|
|
|
|
// 6. Page-specific styles
|
|
@import './layouts/pages';
|
|
@import './layouts/homepage';
|
|
|
|
// 7. Themes
|
|
// @import
|
|
// 'themes/default';
|