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.
54 lines
1017 B
SCSS
54 lines
1017 B
SCSS
/*
|
|
From Bootstrap v5.0 sticky footer example
|
|
See: https://getbootstrap.com/docs/5.0/examples/sticky-footer/
|
|
*/
|
|
|
|
// this is the second dark blue, slightly lighter than the primary
|
|
$iseal-dark-blue: #0e304a;
|
|
// another light blue
|
|
$iseal-light-blue: #328cd1;
|
|
|
|
/*
|
|
Some styles inspired from the Dublin Core DCTERMS website, see:
|
|
https://www.dublincore.org/specifications/dublin-core/dcmi-terms/
|
|
*/
|
|
|
|
body {
|
|
/* for the "scroll spy" navbar feature */
|
|
position: relative;
|
|
color: $primary;
|
|
background-color: $white;
|
|
font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
|
|
}
|
|
|
|
div.badge-required {
|
|
float: right;
|
|
}
|
|
|
|
td.field-name {
|
|
text-align: right;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.table {
|
|
color: $primary;
|
|
}
|
|
|
|
/* Override Bootstrap's top border on tbody */
|
|
.table>:not(:first-child) {
|
|
border-top: 2px solid $iseal-light-blue;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: $primary;
|
|
}
|
|
|
|
.footer {
|
|
color: $white;
|
|
background-color: $iseal-dark-blue;
|
|
|
|
a, a:hover {
|
|
color: inherit;
|
|
}
|
|
}
|