mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2024-11-04 22:33:04 +01:00
Alan Orth
d4bd504ff2
We now have FSC and ISEAL color schemes with some common style in main.scss. I don't have any branding guidelines for FSC so I'm just using colors for now.
32 lines
640 B
SCSS
32 lines
640 B
SCSS
// override some Bootstrap colors. Apparently we need to do this *before* we
|
|
// process Bootstrap.
|
|
|
|
// FSC primary (dark) green
|
|
$primary: rgb(0, 92, 66);
|
|
// FSC secondary (light) green
|
|
$secondary: rgb(114, 191, 66);
|
|
|
|
// selectively import components we need from bootstrap
|
|
// see: node_modules/bootstrap/scss/bootstrap.scss
|
|
@import 'bootstrap';
|
|
|
|
// common style overrides
|
|
@import 'main';
|
|
|
|
div.badge-required {
|
|
float: right;
|
|
|
|
span {
|
|
background-color: var(--bs-red);
|
|
}
|
|
}
|
|
|
|
/* Override Bootstrap's top border on tbody */
|
|
.table>:not(:first-child) {
|
|
border-top: 2px solid $primary;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: $primary;
|
|
}
|