2021-08-10 00:10:26 +01:00
|
|
|
|
|
2021-08-13 18:55:25 +01:00
|
|
|
|
@import "../lib/bootstrap/scss/bootstrap";
|
2021-08-10 00:10:26 +01:00
|
|
|
|
|
|
|
|
|
|
.body-container {
|
2021-04-10 14:11:09 +01:00
|
|
|
|
margin-top: 60px;
|
|
|
|
|
|
padding-bottom:40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.welcome-page {
|
|
|
|
|
|
li {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
padding: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.logged-out-page {
|
|
|
|
|
|
iframe {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.grants-page {
|
|
|
|
|
|
.card {
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
border-bottom: 1px solid lightgray;
|
|
|
|
|
|
|
|
|
|
|
|
.card-title {
|
|
|
|
|
|
img {
|
|
|
|
|
|
width: 100px;
|
|
|
|
|
|
height: 100px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-08-10 00:10:26 +01:00
|
|
|
|
// Your variable overrides
|
|
|
|
|
|
$body-bg: #000;
|
|
|
|
|
|
$body-color: #111;
|
|
|
|
|
|
$theme-colors: (
|
|
|
|
|
|
"primary": #0074d9,
|
|
|
|
|
|
"danger": #ff4136
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2021-04-10 14:11:09 +01:00
|
|
|
|
|