mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2024-11-16 20:07:05 +01:00
Alan Orth
286896486e
After running the util/generate_docs.py script to parse and extract the metadata term specifications and their controlled vocabularies, we use Hugo to generate the HTML site. The HTML site uses Bootstrap with several ISEAL brand colors gleaned from the corporate website.
15 lines
350 B
SCSS
15 lines
350 B
SCSS
// override some Bootstrap colors. Apparently we need to do this *before* we
|
|
// process Bootstrap.
|
|
|
|
// ISEAL dark blue
|
|
$primary: #072439;
|
|
// ISEAL light blue
|
|
$secondary: #2A7AB7;
|
|
|
|
// selectively import components we need from bootstrap
|
|
// see: node_modules/bootstrap/scss/bootstrap.scss
|
|
@import 'bootstrap';
|
|
|
|
// local style overrides
|
|
@import 'main';
|