2019-07-23 12:13:38 +00:00
|
|
|
.searx-navbar {
|
2021-03-10 13:17:07 +00:00
|
|
|
background: #29314D;
|
2019-07-23 12:13:38 +00:00
|
|
|
height: 2.3rem;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
line-height: 1.3rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
}
|
|
|
|
.searx-navbar a,
|
|
|
|
.searx-navbar a:hover {
|
2021-03-10 13:17:07 +00:00
|
|
|
margin-right: 2rem;
|
2019-07-23 12:13:38 +00:00
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.searx-navbar .instance a {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #01D7D4;
|
|
|
|
margin-left: 2rem;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
#main-logo {
|
|
|
|
margin-top: 20vh;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
#main-logo > img {
|
|
|
|
max-width: 350px;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
* {
|
|
|
|
border-radius: 0 !important;
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #29314D;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
body {
|
|
|
|
/* Margin bottom by footer height */
|
|
|
|
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
|
|
margin-bottom: 80px;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
body a {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #0088CC;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
/* Set the fixed height of the footer here */
|
|
|
|
height: 60px;
|
|
|
|
text-align: center;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
input[type=checkbox]:checked + .label_hide_if_checked,
|
|
|
|
input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
|
|
|
|
input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.onoff-checkbox {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
.onoffswitch {
|
|
|
|
position: relative;
|
|
|
|
width: 110px;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
}
|
|
|
|
.onoffswitch-checkbox {
|
2020-06-23 19:44:44 +00:00
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.onoffswitch-checkbox:before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 10px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 1px;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 0px;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.onoffswitch-label {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 2px solid #FFFFFF !important;
|
|
|
|
border-radius: 50px !important;
|
|
|
|
}
|
|
|
|
.onoffswitch-inner {
|
|
|
|
display: block;
|
|
|
|
transition: margin 0.3s ease-in 0s;
|
|
|
|
}
|
|
|
|
.onoffswitch-inner:before,
|
|
|
|
.onoffswitch-inner:after {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
height: 30px;
|
|
|
|
padding: 0;
|
|
|
|
line-height: 40px;
|
|
|
|
font-size: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
content: "";
|
|
|
|
background-color: #EEEEEE;
|
|
|
|
}
|
|
|
|
.onoffswitch-switch {
|
|
|
|
display: block;
|
|
|
|
width: 37px;
|
2021-03-10 13:17:07 +00:00
|
|
|
background-color: #01D7D4;
|
2019-07-23 12:13:38 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0px;
|
2020-06-23 19:44:44 +00:00
|
|
|
border: 2px solid #FFFFFF;
|
2019-07-23 12:13:38 +00:00
|
|
|
border-radius: 50px !important;
|
|
|
|
transition: all 0.3s ease-in 0s;
|
|
|
|
}
|
|
|
|
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
|
|
|
|
right: 71px;
|
|
|
|
background-color: #A1A1A1;
|
|
|
|
}
|
2020-06-23 19:44:44 +00:00
|
|
|
.onoffswitch-checkbox:focus + .onoffswitch-label .onoffswitch-switch {
|
|
|
|
border: 3px solid #444444;
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.result_header {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.result_header .favicon {
|
|
|
|
margin-bottom: -3px;
|
|
|
|
}
|
|
|
|
.result_header a {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #29314D;
|
2019-07-23 12:13:38 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.result_header a:hover {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #0088CC;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.result_header a:visited {
|
|
|
|
color: #684898;
|
|
|
|
}
|
|
|
|
.result_header a .highlight {
|
2021-03-10 13:17:07 +00:00
|
|
|
background-color: #F6F9FA;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.result-content,
|
|
|
|
.result-format,
|
|
|
|
.result-source {
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
word-wrap: break-word;
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #666;
|
2019-07-23 12:13:38 +00:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
2020-09-16 06:53:05 +00:00
|
|
|
.result .highlight {
|
2019-07-23 12:13:38 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.result-source {
|
|
|
|
font-size: 10px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.result-format {
|
|
|
|
font-size: 10px;
|
|
|
|
float: right;
|
|
|
|
}
|
2020-11-30 15:30:21 +00:00
|
|
|
.result-abstract {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.8em;
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.external-link {
|
2020-06-28 20:43:37 +00:00
|
|
|
color: #068922;
|
2019-07-23 12:13:38 +00:00
|
|
|
font-size: 12px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.external-link a {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
.result-default,
|
|
|
|
.result-code,
|
|
|
|
.result-torrent,
|
|
|
|
.result-videos,
|
|
|
|
.result-map {
|
|
|
|
clear: both;
|
2020-06-03 13:04:01 +00:00
|
|
|
padding: 0.5em 4px;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.result-default:hover,
|
|
|
|
.result-code:hover,
|
|
|
|
.result-torrent:hover,
|
|
|
|
.result-videos:hover,
|
|
|
|
.result-map:hover {
|
2021-03-10 13:17:07 +00:00
|
|
|
background-color: #F6F9FA;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.result-images {
|
|
|
|
float: left !important;
|
2021-03-22 11:00:48 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.result-images a {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
2021-03-22 11:00:48 +00:00
|
|
|
.result-images a .img-thumbnail {
|
|
|
|
border: none !important;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.result-images a:hover,
|
|
|
|
.result-images a:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
.result-images a:hover .img-thumbnail,
|
|
|
|
.result-images a:focus .img-thumbnail {
|
|
|
|
box-shadow: 5px 5px 15px 0px black;
|
|
|
|
}
|
|
|
|
.result-images.js a .img-thumbnail {
|
|
|
|
max-height: inherit;
|
|
|
|
min-height: inherit;
|
|
|
|
}
|
|
|
|
.result-images:not(.js) {
|
|
|
|
width: 25%;
|
|
|
|
padding: 3px 13px 13px 3px;
|
|
|
|
}
|
|
|
|
.result-images:not(.js) a .img-thumbnail {
|
|
|
|
margin: 0;
|
|
|
|
max-height: 128px;
|
|
|
|
min-height: 128px;
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.img-thumbnail {
|
|
|
|
margin: 5px;
|
|
|
|
max-height: 128px;
|
|
|
|
min-height: 128px;
|
|
|
|
}
|
|
|
|
.result-videos {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.result-videos hr {
|
|
|
|
margin: 5px 0 15px 0;
|
|
|
|
}
|
|
|
|
.result-videos .collapse {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.result-videos .in {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
.result-torrent {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.result-torrent b {
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.result-torrent .seeders {
|
|
|
|
color: #2ecc71;
|
|
|
|
}
|
|
|
|
.result-torrent .leechers {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #F35E77;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
2020-11-30 15:30:21 +00:00
|
|
|
.result-metadata {
|
|
|
|
clear: both;
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
.result-metadata td {
|
|
|
|
padding-right: 1em;
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #A4A4A4;
|
2020-11-30 15:30:21 +00:00
|
|
|
}
|
|
|
|
.result-metadata td:first-of-type {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #666;
|
2020-11-30 15:30:21 +00:00
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.result-map {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.result-code {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.result-code .code-fork,
|
|
|
|
.result-code .code-fork a {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #666;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.suggestion_item {
|
|
|
|
margin: 2px 5px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.suggestion_item .btn {
|
|
|
|
max-width: 100%;
|
|
|
|
white-space: normal;
|
|
|
|
word-wrap: break-word;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.result_download {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
#pagination {
|
|
|
|
margin-top: 30px;
|
|
|
|
padding-bottom: 60px;
|
|
|
|
}
|
|
|
|
.label-default {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #666;
|
2019-07-23 12:13:38 +00:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
.result .text-muted small {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
.modal-wrapper {
|
|
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
.modal-wrapper {
|
|
|
|
background-clip: padding-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-radius: 6px;
|
|
|
|
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
|
|
|
outline: 0 none;
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-06-09 22:30:39 +00:00
|
|
|
@media screen and (max-width: 75em) {
|
|
|
|
.img-thumbnail {
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.infobox .panel-heading {
|
2021-03-10 13:17:07 +00:00
|
|
|
background-color: #F6F9FA;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.infobox .panel-heading .panel-title {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
2020-08-03 01:18:30 +00:00
|
|
|
.infobox .header_url {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.infobox p {
|
|
|
|
font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2020-08-03 00:11:24 +00:00
|
|
|
.infobox img {
|
2020-08-03 01:18:30 +00:00
|
|
|
max-height: "250px";
|
2020-08-03 00:11:24 +00:00
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.infobox .btn {
|
2021-03-10 13:17:07 +00:00
|
|
|
background-color: #007AB8;
|
2019-07-23 12:13:38 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.infobox .btn a {
|
|
|
|
color: white;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
.infobox .infobox_part {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
.infobox .infobox_part:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2020-08-03 07:15:54 +00:00
|
|
|
.infobox .infobox_toggle {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 0px;
|
2021-03-29 04:54:37 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.infobox .infobox_toggle:hover {
|
|
|
|
background: #DDD;
|
2020-08-03 07:15:54 +00:00
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox ~ .infobox_body {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox:checked ~ .infobox_body {
|
|
|
|
max-height: none;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
|
|
|
|
display: block;
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.search_categories,
|
|
|
|
#categories {
|
|
|
|
text-transform: capitalize;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
align-content: stretch;
|
|
|
|
}
|
|
|
|
.search_categories label,
|
|
|
|
#categories label,
|
|
|
|
.search_categories .input-group-addon,
|
|
|
|
#categories .input-group-addon {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: auto;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: normal;
|
|
|
|
background-color: white;
|
2021-03-10 13:17:07 +00:00
|
|
|
border: #DDD 1px solid;
|
2019-07-23 12:13:38 +00:00
|
|
|
border-right: none;
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #666;
|
2019-07-23 12:13:38 +00:00
|
|
|
padding-bottom: 0.4rem;
|
|
|
|
padding-top: 0.4rem;
|
|
|
|
text-align: center;
|
|
|
|
min-width: 50px;
|
|
|
|
}
|
|
|
|
.search_categories label:last-child,
|
|
|
|
#categories label:last-child,
|
|
|
|
.search_categories .input-group-addon:last-child,
|
|
|
|
#categories .input-group-addon:last-child {
|
2021-03-10 13:17:07 +00:00
|
|
|
border-right: #DDD 1px solid;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.search_categories input[type="checkbox"]:checked + label,
|
|
|
|
#categories input[type="checkbox"]:checked + label {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #29314D;
|
2019-07-23 12:13:38 +00:00
|
|
|
font-weight: bold;
|
2021-03-10 13:17:07 +00:00
|
|
|
border-bottom: #01D7D4 5px solid;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
#main-logo {
|
|
|
|
margin-top: 10vh;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
#main-logo > img {
|
|
|
|
max-width: 350px;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
#q {
|
|
|
|
box-shadow: none;
|
|
|
|
border-right: none;
|
2021-03-10 13:17:07 +00:00
|
|
|
border-color: #888;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
#search_form .input-group-btn .btn {
|
2021-03-10 13:17:07 +00:00
|
|
|
border-color: #888;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
#search_form .input-group-btn .btn:hover {
|
2020-06-28 20:43:37 +00:00
|
|
|
background-color: #068922;
|
2019-07-23 12:13:38 +00:00
|
|
|
color: white;
|
|
|
|
}
|
2020-08-27 19:55:47 +00:00
|
|
|
.custom-select,
|
|
|
|
.custom-select-rtl {
|
2019-07-23 12:13:38 +00:00
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: normal;
|
|
|
|
background-color: white;
|
2021-03-10 13:17:07 +00:00
|
|
|
border: #888 1px solid;
|
|
|
|
color: #666;
|
2021-03-21 16:59:11 +00:00
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGnsAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW86/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNy0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
2020-08-27 19:55:47 +00:00
|
|
|
.custom-select-rtl {
|
|
|
|
background-position-x: 4%;
|
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
.search-margin {
|
|
|
|
margin-bottom: 0.6em;
|
|
|
|
}
|
2020-06-23 19:44:44 +00:00
|
|
|
.visually-hidden {
|
|
|
|
position: absolute !important;
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-06-28 20:43:37 +00:00
|
|
|
.label-danger,
|
|
|
|
.btn-danger {
|
|
|
|
background: #c9432f;
|
|
|
|
}
|
|
|
|
.label-success,
|
|
|
|
.btn-success {
|
|
|
|
background: #068922;
|
|
|
|
}
|
|
|
|
select.form-control {
|
2021-03-10 13:17:07 +00:00
|
|
|
border-color: #888 !important;
|
2020-06-28 20:43:37 +00:00
|
|
|
}
|
2019-07-23 12:13:38 +00:00
|
|
|
#advanced-search-container {
|
|
|
|
display: none;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
#advanced-search-container label,
|
|
|
|
#advanced-search-container .input-group-addon {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: normal;
|
|
|
|
background-color: white;
|
2021-03-10 13:17:07 +00:00
|
|
|
border: #DDD 1px solid;
|
2019-07-23 12:13:38 +00:00
|
|
|
border-right: none;
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #666;
|
2019-07-23 12:13:38 +00:00
|
|
|
padding-bottom: 0.4rem;
|
|
|
|
padding-right: 0.7rem;
|
|
|
|
padding-left: 0.7rem;
|
|
|
|
}
|
|
|
|
#advanced-search-container label:last-child,
|
|
|
|
#advanced-search-container .input-group-addon:last-child {
|
2021-03-10 13:17:07 +00:00
|
|
|
border-right: #DDD 1px solid;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
#advanced-search-container input[type="radio"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#advanced-search-container input[type="radio"]:checked + label {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #29314D;
|
2019-07-23 12:13:38 +00:00
|
|
|
font-weight: bold;
|
2021-03-10 13:17:07 +00:00
|
|
|
border-bottom: #01D7D4 5px solid;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
2020-06-25 16:12:28 +00:00
|
|
|
#check-advanced:focus + label {
|
|
|
|
text-decoration: underline;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
#check-advanced:checked ~ #advanced-search-container {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.advanced {
|
|
|
|
padding: 0;
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.advanced label,
|
|
|
|
.advanced select {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.cursor-text {
|
|
|
|
cursor: text !important;
|
|
|
|
}
|
|
|
|
.cursor-pointer {
|
|
|
|
cursor: pointer !important;
|
|
|
|
}
|
|
|
|
pre,
|
|
|
|
code {
|
|
|
|
font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
|
|
|
|
}
|
2020-09-16 06:53:05 +00:00
|
|
|
/*
|
|
|
|
this file is generated automatically by searx_extra/update/update_pygments.py
|
|
|
|
using pygments version 2.8.0
|
|
|
|
*/
|
|
|
|
.code-highlight .linenos {
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
cursor: default;
|
|
|
|
margin-right: 8px;
|
|
|
|
text-align: right;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .linenos::selection {
|
|
|
|
background: transparent;
|
|
|
|
/* WebKit/Blink Browsers */
|
|
|
|
}
|
|
|
|
.code-highlight .linenos::-moz-selection {
|
|
|
|
background: transparent;
|
|
|
|
/* Gecko Browsers */
|
|
|
|
}
|
|
|
|
.code-highlight pre {
|
|
|
|
line-height: 125%;
|
|
|
|
}
|
|
|
|
.code-highlight td.linenos .normal {
|
|
|
|
color: inherit;
|
|
|
|
background-color: transparent;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
.code-highlight span.linenos {
|
|
|
|
color: inherit;
|
|
|
|
background-color: transparent;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
.code-highlight td.linenos .special {
|
|
|
|
color: #000000;
|
|
|
|
background-color: #ffffc0;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
.code-highlight span.linenos.special {
|
|
|
|
color: #000000;
|
|
|
|
background-color: #ffffc0;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
.code-highlight .hll {
|
2019-07-23 12:13:38 +00:00
|
|
|
background-color: #ffffcc;
|
|
|
|
}
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight {
|
|
|
|
background: #282C34;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .c {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #556366;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Comment */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .err {
|
|
|
|
border: 1px solid #ff0000;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Error */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .k {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BE74D5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Keyword */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .o {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Operator */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .ch {
|
|
|
|
color: #556366;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Comment.Hashbang */
|
|
|
|
.code-highlight .cm {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #556366;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Comment.Multiline */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .cp {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #BC7A00;
|
2020-09-16 06:53:05 +00:00
|
|
|
font-style: italic;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Comment.Preproc */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .cpf {
|
|
|
|
color: #556366;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Comment.PreprocFile */
|
|
|
|
.code-highlight .c1 {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #556366;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Comment.Single */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .cs {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #556366;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Comment.Special */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gd {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #A00000;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Generic.Deleted */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .ge {
|
2019-07-23 12:13:38 +00:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Generic.Emph */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gr {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #FF0000;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Generic.Error */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gh {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #000080;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Generic.Heading */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gi {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #00A000;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Generic.Inserted */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .go {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #888888;
|
|
|
|
}
|
|
|
|
/* Generic.Output */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gp {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #000080;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Generic.Prompt */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gs {
|
2019-07-23 12:13:38 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Generic.Strong */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gu {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #800080;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Generic.Subheading */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .gt {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #0044DD;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Generic.Traceback */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .kc {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BE74D5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Keyword.Constant */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .kd {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BE74D5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Keyword.Declaration */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .kn {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BE74D5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Keyword.Namespace */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .kp {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #BE74D5;
|
2020-09-16 06:53:05 +00:00
|
|
|
font-weight: bold;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Keyword.Pseudo */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .kr {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BE74D5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Keyword.Reserved */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .kt {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D46C72;
|
2020-09-16 06:53:05 +00:00
|
|
|
font-weight: bold;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Keyword.Type */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .m {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.Number */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .s {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #86C372;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .na {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #7D9029;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Attribute */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nb {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #BE74D5;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Builtin */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nc {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #61AFEF;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Name.Class */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .no {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Constant */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nd {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #AA22FF;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Decorator */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .ni {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #999999;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Name.Entity */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .ne {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #D2413A;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Name.Exception */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nf {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #61AFEF;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Function */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nl {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #A0A000;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Label */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nn {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #61AFEF;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Name.Namespace */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nt {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BE74D5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Name.Tag */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .nv {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #DFC06F;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Variable */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .ow {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #AA22FF;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Operator.Word */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .w {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D7DAE0;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Text.Whitespace */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .mb {
|
|
|
|
color: #D19A66;
|
|
|
|
}
|
|
|
|
/* Literal.Number.Bin */
|
|
|
|
.code-highlight .mf {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.Number.Float */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .mh {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.Number.Hex */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .mi {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.Number.Integer */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .mo {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.Number.Oct */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .sa {
|
|
|
|
color: #86C372;
|
|
|
|
}
|
|
|
|
/* Literal.String.Affix */
|
|
|
|
.code-highlight .sb {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #86C372;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Backtick */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .sc {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #86C372;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Char */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .dl {
|
|
|
|
color: #86C372;
|
|
|
|
}
|
|
|
|
/* Literal.String.Delimiter */
|
|
|
|
.code-highlight .sd {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #86C372;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
/* Literal.String.Doc */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .s2 {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #86C372;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Double */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .se {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BB6622;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Literal.String.Escape */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .sh {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #86C372;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Heredoc */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .si {
|
2019-07-23 12:13:38 +00:00
|
|
|
color: #BB6688;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
/* Literal.String.Interpol */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .sx {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #BE74D5;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Other */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .sr {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #BB6688;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Regex */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .s1 {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #86C372;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Single */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .ss {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #DFC06F;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.String.Symbol */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .bp {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #BE74D5;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Builtin.Pseudo */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .fm {
|
|
|
|
color: #61AFEF;
|
|
|
|
}
|
|
|
|
/* Name.Function.Magic */
|
|
|
|
.code-highlight .vc {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #DFC06F;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Variable.Class */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .vg {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #DFC06F;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Variable.Global */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .vi {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #DFC06F;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Name.Variable.Instance */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight .vm {
|
|
|
|
color: #DFC06F;
|
|
|
|
}
|
|
|
|
/* Name.Variable.Magic */
|
|
|
|
.code-highlight .il {
|
2021-03-10 13:17:07 +00:00
|
|
|
color: #D19A66;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
/* Literal.Number.Integer.Long */
|
2020-09-16 06:53:05 +00:00
|
|
|
.code-highlight pre {
|
2019-07-23 12:13:38 +00:00
|
|
|
margin-bottom: 25px;
|
|
|
|
padding: 20px 10px;
|
2020-09-16 06:53:05 +00:00
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
border: inherit;
|
|
|
|
color: #D7DAE0;
|
2019-07-23 12:13:38 +00:00
|
|
|
}
|
|
|
|
.table > tbody > tr > td,
|
|
|
|
.table > tbody > tr > th {
|
|
|
|
vertical-align: middle !important;
|
|
|
|
}
|
2020-05-15 08:23:21 +00:00
|
|
|
.nav-tabs.nav-justified {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
input.cursor-text {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2021-03-16 15:47:05 +00:00
|
|
|
.engine-tooltip {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
margin: 0rem 0 0 2rem;
|
|
|
|
border: 1px solid #ddd;
|
2021-04-14 16:11:35 +00:00
|
|
|
box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
|
2021-03-16 15:47:05 +00:00
|
|
|
background: white;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
z-index: 1000000;
|
|
|
|
}
|
2021-04-14 16:11:35 +00:00
|
|
|
td:hover .engine-tooltip,
|
2021-03-16 15:47:05 +00:00
|
|
|
th:hover .engine-tooltip,
|
|
|
|
.engine-tooltip:hover {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2021-04-14 16:11:35 +00:00
|
|
|
/* stacked-bar-chart */
|
|
|
|
.stacked-bar-chart {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 0.125rem 0 3rem;
|
|
|
|
width: 100%;
|
|
|
|
width: -moz-available;
|
|
|
|
width: -webkit-fill-available;
|
|
|
|
width: fill;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: center;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-value {
|
|
|
|
width: 3rem;
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-base {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-median {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
background: #000000;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.9);
|
|
|
|
padding: 0.3rem 0;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-rate80 {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
background: transparent;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
|
|
padding: 0.3rem 0;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-rate95 {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
background: transparent;
|
|
|
|
border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-rate100 {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
background: transparent;
|
|
|
|
border-left: 1px solid rgba(0, 0, 0, 0.9);
|
|
|
|
padding: 0.4rem 0;
|
|
|
|
width: 1px;
|
|
|
|
}
|
2021-04-22 10:14:11 +00:00
|
|
|
.stacked-bar-chart-serie1 {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
background: #5bc0de;
|
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
padding: 0.4rem 0;
|
|
|
|
}
|
|
|
|
.stacked-bar-chart-serie2 {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
background: #deb15b;
|
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
padding: 0.4rem 0;
|
|
|
|
}
|