Use an ILRI theme

This commit is contained in:
2021-03-14 11:41:48 +02:00
parent d483f7fc0b
commit 61040ea4a5
3 changed files with 42 additions and 2 deletions

View File

@ -3,8 +3,43 @@
See: https://getbootstrap.com/docs/5.0/examples/sticky-footer/
*/
// Add some ILRI colors
$ilri-white: #EBEBEB;
$ilri-gray: #333;
body {
color: $ilri-gray;
}
.container {
width: auto;
max-width: 968px;
padding: 0 15px;
}
.bg-dark {
color: $ilri-white !important;
background-color: $primary !important;
}
.form-text {
color: #666;
}
.text-white {
color: $ilri-white !important;
}
a, a:hover {
color: $primary;
}
.footer {
color: $ilri-gray;
background-color: $secondary;
a, a:hover {
color: inherit;
}
}

View File

@ -1,3 +1,8 @@
// override some Bootstrap colors. Apparently we need to do this *before* we
// process Bootstrap.
$primary: #702D3E;
$secondary: #E3D7D7;
// selectively import components we need from bootstrap
// see: node_modules/bootstrap/scss/bootstrap.scss
@import 'bootstrap';