2021-03-11 19:26:33 +01:00
|
|
|
/*
|
|
|
|
From Bootstrap v5.0b2 sticky footer example
|
|
|
|
See: https://getbootstrap.com/docs/5.0/examples/sticky-footer/
|
|
|
|
*/
|
|
|
|
|
2021-03-14 10:41:48 +01:00
|
|
|
// Add some ILRI colors
|
|
|
|
|
|
|
|
$ilri-white: #EBEBEB;
|
|
|
|
$ilri-gray: #333;
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: $ilri-gray;
|
|
|
|
}
|
|
|
|
|
2021-03-11 19:26:33 +01:00
|
|
|
.container {
|
|
|
|
width: auto;
|
2021-03-13 21:06:43 +01:00
|
|
|
max-width: 968px;
|
2021-03-11 19:26:33 +01:00
|
|
|
padding: 0 15px;
|
|
|
|
}
|
2021-03-14 10:41:48 +01:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|