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.
48 lines
859 B
SCSS
48 lines
859 B
SCSS
/*
|
|
From Bootstrap v5.0 sticky footer example
|
|
See: https://getbootstrap.com/docs/5.0/examples/sticky-footer/
|
|
*/
|
|
|
|
/*
|
|
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: $black;
|
|
background-color: $white;
|
|
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;
|
|
}
|
|
|
|
.nav-link {
|
|
color: inherit;
|
|
}
|
|
|
|
td.field-name {
|
|
text-align: right;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h3 img.icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.footer {
|
|
color: $white;
|
|
background-color: $primary;
|
|
|
|
a, a:hover {
|
|
color: inherit;
|
|
}
|
|
}
|