2020-08-21 11:24:04 +00:00
|
|
|
.validate:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Opaque tooltip with white background */
|
|
|
|
.tooltip.show {
|
2020-09-01 07:46:33 +00:00
|
|
|
opacity: 1;
|
2020-08-21 11:24:04 +00:00
|
|
|
}
|
2020-09-01 07:46:33 +00:00
|
|
|
|
2020-08-21 11:24:04 +00:00
|
|
|
.tooltip-inner {
|
|
|
|
background-color: #fff;
|
2020-09-01 07:46:33 +00:00
|
|
|
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
|
|
|
|
border: 1px solid rgba(0, 0, 0, .250);
|
2020-08-21 11:24:04 +00:00
|
|
|
color: #000;
|
|
|
|
margin: 0 .5rem .25rem .5rem;
|
|
|
|
padding: 0;
|
2020-09-01 07:52:45 +00:00
|
|
|
width: 200px;
|
2020-08-21 11:24:04 +00:00
|
|
|
}
|
2020-09-01 07:46:33 +00:00
|
|
|
|
2020-08-21 11:24:04 +00:00
|
|
|
.bs-tooltip-bottom .arrow::before {
|
2020-09-01 07:46:33 +00:00
|
|
|
border-bottom-color: rgba(0, 0, 0, .250);
|
2020-08-21 11:24:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 12:03:49 +00:00
|
|
|
/* Fixed width picture column */
|
|
|
|
.picture-col {
|
|
|
|
max-width: 202px;
|
|
|
|
}
|
|
|
|
|
2020-08-21 11:24:04 +00:00
|
|
|
/* Limit fluid container to a max size */
|
|
|
|
.container-fluid {
|
|
|
|
max-width: 1600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Apply Bootstrap table-responsive to all Django tables */
|
|
|
|
.table-container {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Smaller language selector */
|
|
|
|
select.language {
|
|
|
|
padding: 0;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
height: calc(1.5em + .5rem);
|
|
|
|
color: #6c757d;
|
2020-08-21 12:21:26 +00:00
|
|
|
-moz-appearance: none;
|
2020-08-21 16:08:32 +00:00
|
|
|
width: auto;
|
2020-08-22 21:23:44 +00:00
|
|
|
cursor: pointer;
|
2020-08-21 11:24:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-01 08:47:29 +00:00
|
|
|
/* Remove horizontal padding on mark */
|
|
|
|
.mark,
|
|
|
|
mark {
|
|
|
|
padding: .2em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make navbar more readable */
|
|
|
|
.navbar-dark .navbar-nav .nav-link {
|
|
|
|
color: rgba(255, 255, 255, .75);
|
|
|
|
}
|
|
|
|
|
2020-08-21 11:24:04 +00:00
|
|
|
/* Last BDE colors */
|
|
|
|
.bg-primary {
|
2021-05-22 09:53:13 +00:00
|
|
|
background-color: rgb(18, 67, 4) !important;
|
2020-08-21 11:24:04 +00:00
|
|
|
}
|
2020-09-01 07:46:33 +00:00
|
|
|
|
2020-08-21 11:24:04 +00:00
|
|
|
html {
|
|
|
|
scrollbar-color: rgba(121, 121, 123, 1) rgba(35, 35, 39, 1);
|
|
|
|
}
|
2020-09-01 07:46:33 +00:00
|
|
|
|
2020-08-21 11:24:04 +00:00
|
|
|
body {
|
|
|
|
background-color: rgba(64, 64, 64, 1);
|
|
|
|
background-image: url(../img/background-texture.png);
|
|
|
|
}
|
2020-09-01 07:46:33 +00:00
|
|
|
|
|
|
|
.btn-outline-primary:hover,
|
|
|
|
.btn-outline-primary:not(:disabled):not(.disabled).active,
|
|
|
|
.btn-outline-primary:not(:disabled):not(.disabled):active {
|
|
|
|
color: #fff;
|
2021-05-22 09:30:11 +00:00
|
|
|
background-color: rgb(18, 67, 46);
|
|
|
|
border-color: rgb(18, 67, 46);
|
2020-09-01 07:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-outline-primary {
|
2021-05-22 09:30:11 +00:00
|
|
|
color: rgb(18, 67, 46);
|
2020-09-01 07:46:33 +00:00
|
|
|
background-color: rgba(248, 249, 250, 0.9);
|
2021-05-22 09:30:11 +00:00
|
|
|
border-color: rgb(18, 67, 46);
|
2020-09-01 08:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.turbolinks-progress-bar {
|
2021-05-22 09:30:11 +00:00
|
|
|
background-color: #12432E;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary:hover,
|
|
|
|
.btn-primary:not(:disabled):not(.disabled).active,
|
|
|
|
.btn-primary:not(:disabled):not(.disabled):active {
|
|
|
|
color: #fff;
|
|
|
|
background-color: rgb(18, 67, 46);
|
|
|
|
border-color: rgb(18, 67, 46);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
color: rgba(248, 249, 250, 0.9);
|
|
|
|
background-color: rgb(28, 114, 10);
|
|
|
|
border-color: rgb(18, 67, 46);
|
|
|
|
}
|
2021-05-22 10:19:29 +00:00
|
|
|
|
|
|
|
.border-primary {
|
|
|
|
border-color: rgb(28, 114, 10) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: rgb(28, 114, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: rgb(122, 163, 75);
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control:focus {
|
|
|
|
box-shadow: 0 0 0 0.25rem rgba(122, 163, 75, 0.25);
|
|
|
|
border-color: rgb(122, 163, 75);
|
|
|
|
}
|
|
|
|
|
2021-05-22 10:34:31 +00:00
|
|
|
.btn-outline-primary.focus {
|
2021-05-22 10:19:29 +00:00
|
|
|
box-shadow: 0 0 0 0.25rem rgba(122, 163, 75, 0.5);
|
|
|
|
}
|
2021-05-22 10:34:31 +00:00
|
|
|
|
|
|
|
|