csv-metadata-quality-web/source/scss/main.scss

46 lines
597 B
SCSS
Raw Permalink Normal View History

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;
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;
}
}