Hi forum,
I’m new to Jekyll and currently I’m building a site based on https://github.com/daattali/beautiful-jekyll
In its /css/main.css file this contains a definition of
hr.small {
max-width: 100px;
margin: 15px auto;
border-width: 4px;
border-color: inherit;
border-radius: 3px;
}
I now want to achieve that this class gets another color.
Instead of simply changing the color in the main.css I’m trying to add a custom CSS file for all my changes but I’m failing all the time.
Currently I have a file under /assets/ css/style.scss that contains
@import “{{ site.theme }}”;
hr.small {
border-color: #F08921;
}
This follows the description under https://help.github.com/articles/customizing-css-and-html-in-your-jekyll-theme/.
However, wen building the site, that css is simply ignored.
Does anybody here have any advice for me on how I can introduce my own css file to the site in which I can change the CSS settings without changing all the files that ship with the theme?
Thanks a lot in advance
Norbert