2021-11-01 07:27:41 +01:00
|
|
|
/*
|
|
|
|
From Bootstrap v5.0 sticky footer example
|
|
|
|
See: https://getbootstrap.com/docs/5.0/examples/sticky-footer/
|
|
|
|
*/
|
|
|
|
|
2021-12-01 13:44:55 +01:00
|
|
|
// Tint colors (80%, 60%, 40%, and 20% of primary blue)
|
|
|
|
$iseal-tint-80: rgb(68, 106, 160);
|
|
|
|
$iseal-tint-60: rgb(113, 136, 181);
|
|
|
|
$iseal-tint-40: rgb(159, 172, 205);
|
|
|
|
$iseal-tint-20: rgb(206, 212, 229);
|
2021-11-01 07:27:41 +01:00
|
|
|
|
2021-12-01 13:05:48 +01:00
|
|
|
// Secondary colors
|
|
|
|
$iseal-secondary-orange: rgb(223, 155, 24);
|
|
|
|
$iseal-secondary-green: rgb(137, 168, 52);
|
|
|
|
$iseal-secondary-red: rgb(196, 41, 55);
|
|
|
|
$iseal-secondary-purple: rgb(116, 68, 129);
|
|
|
|
|
2021-11-01 07:27:41 +01:00
|
|
|
/*
|
|
|
|
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;
|
2021-12-01 13:05:48 +01:00
|
|
|
color: $black;
|
2021-11-01 07:27:41 +01:00
|
|
|
background-color: $white;
|
2021-12-01 13:05:48 +01:00
|
|
|
font-family: Arial,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The ISEAL Branding Guidelines Version 3.0 say that sub-headings should be
|
|
|
|
// normal weight and secondary blue color.
|
|
|
|
p.lead {
|
|
|
|
color: $secondary;
|
2021-11-01 07:27:41 +01:00
|
|
|
}
|
|
|
|
|
2021-12-01 13:44:55 +01:00
|
|
|
.nav-link {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2021-11-01 07:27:41 +01:00
|
|
|
div.badge-required {
|
|
|
|
float: right;
|
2021-12-01 13:05:48 +01:00
|
|
|
|
|
|
|
span {
|
|
|
|
background-color: $iseal-secondary-red;
|
|
|
|
}
|
2021-11-01 07:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
td.field-name {
|
|
|
|
text-align: right;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Override Bootstrap's top border on tbody */
|
|
|
|
.table>:not(:first-child) {
|
2021-12-01 13:44:55 +01:00
|
|
|
border-top: 2px solid $iseal-tint-80;
|
2021-11-01 07:27:41 +01:00
|
|
|
}
|
|
|
|
|
2021-12-01 13:05:48 +01:00
|
|
|
// The ISEAL Branding Guidelines Version 3.0 say that headings should be bold
|
|
|
|
// weight and primary blue color.
|
2021-11-01 07:27:41 +01:00
|
|
|
h1, h2, h3 {
|
|
|
|
color: $primary;
|
2021-12-01 13:05:48 +01:00
|
|
|
font-weight: 700;
|
2021-11-01 07:27:41 +01:00
|
|
|
}
|
|
|
|
|
2021-12-01 13:20:17 +01:00
|
|
|
code {
|
2021-12-01 13:56:51 +01:00
|
|
|
color: $iseal-secondary-orange;
|
2021-12-01 13:20:17 +01:00
|
|
|
}
|
|
|
|
|
2021-11-01 07:27:41 +01:00
|
|
|
.footer {
|
|
|
|
color: $white;
|
2021-12-01 13:44:55 +01:00
|
|
|
background-color: $primary;
|
2021-11-01 07:27:41 +01:00
|
|
|
|
|
|
|
a, a:hover {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|