102 lines
1.5 KiB
SCSS
102 lines
1.5 KiB
SCSS
// Your variable overrides
|
|
$body-bg: rgb(0, 13, 25);
|
|
$body-color: rgb(214, 214, 214);
|
|
|
|
@import "../lib/bootstrap/scss/bootstrap";
|
|
|
|
.body-container {
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
// Your variable overrides
|
|
$body-bg: #000;
|
|
$body-color: #bbb;
|
|
$theme-colors: (
|
|
"primary": #0074d9,
|
|
"danger": #ff4136
|
|
);
|
|
|
|
.welcome-page li {
|
|
list-style: none;
|
|
padding: 4px; }
|
|
|
|
.logged-out-page iframe {
|
|
display: none;
|
|
width: 0;
|
|
height: 0; }
|
|
|
|
.expired {
|
|
color: white;
|
|
background-color: red;
|
|
}
|
|
|
|
.ok {
|
|
font-weight: bolder;
|
|
color: white;
|
|
background-color: #009220;
|
|
}
|
|
|
|
.nomoretam {
|
|
font-weight: bolder;
|
|
color: black;
|
|
background-color: orange;
|
|
}
|
|
|
|
.ok a {
|
|
color: rgb(47, 228, 228);
|
|
background-color: black;
|
|
}
|
|
|
|
.ok a:hover {
|
|
color: rgb(119, 255, 255);
|
|
background-color: black;
|
|
}
|
|
|
|
.extinfo {
|
|
color: rgb(179, 185, 23);
|
|
background-color: black;
|
|
font-size: small;
|
|
font-family: cursive;
|
|
}
|
|
|
|
pre code {
|
|
color: rgb(169, 255, 255);
|
|
background-color: rgb(46, 45, 45);
|
|
cursor: copy;
|
|
} |