I have been utilizing Github pages with one of the available themes (automatically generated by Github, not locally). I am looking to make global CSS tweaks without having to add import statements to each individual page.
To achieve this, I created a stylesheet within my project located at: /assets/css/nbstyle.css
, and then included the following in my _config.yml file:
defaults:
-
scope:
path: ""
values:
stylesheet: "css/nbstyle.css"
However, it appears that my custom stylesheet is being disregarded. What is the proper method for specifying a custom style sheet through _config.yml? Will this override the theme's CSS entirely, or will both stylesheets be imported?
(Or perhaps this functionality is not feasible at all?)