1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-19 09:05:55 -04:00
notes/assets/css/just-the-docs.scss

44 lines
745 B
SCSS
Raw Normal View History

2017-03-09 13:16:08 -05:00
---
# this ensures Jekyll reads the file to be transformed into CSS later
# only Main files contain this front matter, not partials.
---
//
2018-11-15 15:12:12 -05:00
// Import external dependencies
2017-03-09 13:16:08 -05:00
//
2018-11-16 10:28:47 -05:00
@import "./vendor/normalize.scss/normalize.scss";
2017-03-09 13:16:08 -05:00
//
// Import Just the docs scss
//
// Support
@import "./support/support";
2017-03-26 21:09:19 -04:00
2018-11-15 15:12:12 -05:00
//
// Import custom color scheme scss
//
{% if site.color_scheme == "dark" %}
@import "./color_schemes/dark.scss";
{% endif %}
2017-03-26 21:09:19 -04:00
// Modules
2017-03-09 13:16:08 -05:00
@import "./base";
@import "./layout";
2017-03-24 09:47:37 -04:00
@import "./content";
2017-03-09 13:16:08 -05:00
@import "./navigation";
@import "./typography";
2017-03-26 21:09:19 -04:00
@import "./labels";
2017-03-24 09:47:37 -04:00
@import "./buttons";
@import "./search";
2017-03-09 13:16:08 -05:00
@import "./tables";
@import "./code";
2017-03-24 09:47:37 -04:00
@import "./utilities/utilities";
2018-11-15 15:12:12 -05:00
//
// Import custom overrides
//
@import "./custom/custom";