2017-02-12 14:06:01 +00:00
|
|
|
/*
|
2021-10-01 14:33:31 +00:00
|
|
|
* SearXNG, A privacy-respecting, hackable metasearch engine
|
2017-02-12 14:06:01 +00:00
|
|
|
*
|
|
|
|
* To convert "style.less" to "style.css" run: $make styles
|
|
|
|
*/
|
|
|
|
|
[stylelint] disable role 'no-descending-specificity'
This patch disables role 'no-descending-specificity'. IMO it is better to have
this rule active (see below [1]), but it is hard to rewrite the less files to
pass this rule, so for the first I chose to disable this rule.
---
Source order is important in CSS, and when two selectors have the same
specificity, the one that occurs last will take priority. However, the situation
is different when one of the selectors has a higher specificity. In that case,
source order does not matter: the selector with higher specificity will win out
even if it comes first.
The clashes of these two mechanisms for prioritization, source order and
specificity, can cause some confusion when reading stylesheets. If a selector
with higher specificity comes before the selector it overrides, we have to think
harder to understand it, because it violates the source order
expectation. Stylesheets are most legible when overriding selectors always come
after the selectors they override. That way both mechanisms, source order and
specificity, work together nicely.
This rule enforces that practice as best it can, reporting fewer errors than it
should. It cannot catch every actual overriding selector, but it can catch
certain common mistakes.
[1] https://stylelint.io/user-guide/rules/list/no-descending-specificity/
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-06-22 12:23:12 +00:00
|
|
|
// stylelint-disable no-descending-specificity
|
|
|
|
|
2021-04-28 14:07:21 +00:00
|
|
|
@import "../../__common__/less/new_issue.less";
|
2021-05-16 11:16:44 +00:00
|
|
|
@import "../../__common__/less/stats.less";
|
2021-09-05 14:58:56 +00:00
|
|
|
@import "../../__common__/less/result_templates.less";
|
2021-06-17 15:39:44 +00:00
|
|
|
@import (inline) "../../node_modules/normalize.css/normalize.css";
|
2021-06-18 15:33:56 +00:00
|
|
|
@import "../generated/ion.less";
|
2017-02-12 14:06:01 +00:00
|
|
|
@import "definitions.less";
|
|
|
|
@import "mixins.less";
|
|
|
|
@import "code.less";
|
|
|
|
@import "toolkit.less";
|
|
|
|
@import "autocomplete.less";
|
2021-10-02 09:57:08 +00:00
|
|
|
@import "detail.less";
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
// for index.html template
|
|
|
|
@import "index.less";
|
|
|
|
|
|
|
|
// for preferences.html template
|
|
|
|
@import "preferences.less";
|
|
|
|
|
|
|
|
// Search-Field
|
|
|
|
@import "search.less";
|
|
|
|
|
2021-06-22 12:15:47 +00:00
|
|
|
// ion-icon
|
|
|
|
.ion-icon-big {
|
|
|
|
.ion-icon;
|
|
|
|
|
|
|
|
font-size: 149%;
|
|
|
|
}
|
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
// Main LESS-Code
|
|
|
|
html {
|
2021-09-27 15:37:15 +00:00
|
|
|
font-family: sans-serif;
|
2017-02-12 14:06:01 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
.text-size-adjust;
|
2021-06-22 11:50:06 +00:00
|
|
|
|
2021-10-06 18:12:51 +00:00
|
|
|
color: var(--color-base-font);
|
2021-10-08 14:06:48 +00:00
|
|
|
background-color: var(--color-base-background);
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
body,
|
|
|
|
main {
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-06-25 09:31:14 +00:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
main {
|
|
|
|
width: 100%;
|
2021-06-25 09:31:14 +00:00
|
|
|
margin-bottom: 2rem;
|
|
|
|
flex: 1;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
#main_preferences,
|
|
|
|
#main_about,
|
|
|
|
#main_stats {
|
2021-09-25 16:29:12 +00:00
|
|
|
margin: 2em auto;
|
|
|
|
width: 85em;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
clear: both;
|
2021-06-25 09:31:14 +00:00
|
|
|
min-height: 4rem;
|
2021-09-26 11:01:22 +00:00
|
|
|
padding: 1rem 0;
|
2017-02-12 14:06:01 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2021-10-08 14:06:48 +00:00
|
|
|
background-color: var(--color-footer-background);
|
|
|
|
border-top: 1px solid var(--color-footer-border);
|
2021-06-25 09:31:14 +00:00
|
|
|
overflow: hidden;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
#main_preferences h1,
|
|
|
|
#main_stats h1 {
|
2021-10-28 19:02:39 +00:00
|
|
|
background: url('../img/searxng.png') no-repeat;
|
|
|
|
background-size: contain;
|
2017-02-12 14:06:01 +00:00
|
|
|
min-height: 40px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
span {
|
2021-06-22 11:50:06 +00:00
|
|
|
visibility: hidden;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
input[type="submit"],
|
|
|
|
#results button[type="submit"] {
|
2021-10-06 18:12:51 +00:00
|
|
|
padding: 0.7rem;
|
2017-02-12 14:06:01 +00:00
|
|
|
display: inline-block;
|
2021-10-06 18:12:51 +00:00
|
|
|
background: var(--color-btn-background);
|
|
|
|
color: var(--color-btn-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
.rounded-corners;
|
2021-06-22 11:50:06 +00:00
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
border: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-url-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
&:visited {
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-url-visited-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
.highlight {
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-url-visited-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
article[data-vim-selected] {
|
2021-09-30 16:12:42 +00:00
|
|
|
background: var(--color-result-vim-selected);
|
2021-10-29 16:57:36 +00:00
|
|
|
border-left: 0.2rem solid var(--color-result-vim-arrow);
|
|
|
|
.rounded-right-corners;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
article.result-images[data-vim-selected] {
|
2021-10-08 14:06:48 +00:00
|
|
|
background: var(--color-result-vim-arrow);
|
2021-10-29 16:57:36 +00:00
|
|
|
border: none;
|
|
|
|
.rounded-corners;
|
2021-10-02 09:57:08 +00:00
|
|
|
|
|
|
|
.image_thumbnail {
|
|
|
|
filter: opacity(60%);
|
|
|
|
}
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.result {
|
2021-10-06 18:12:51 +00:00
|
|
|
margin: @results-margin 0;
|
2021-10-29 16:57:36 +00:00
|
|
|
padding: @result-padding;
|
|
|
|
border-left: 0.2rem solid transparent;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.1em;
|
2021-06-22 11:50:06 +00:00
|
|
|
word-wrap: break-word;
|
2021-10-28 14:14:34 +00:00
|
|
|
margin: 0.4rem 0 0.4rem 0;
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
a {
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-link-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
|
|
|
&:visited {
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-link-visited-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2017-02-12 14:06:01 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
border: none;
|
2021-06-22 11:50:06 +00:00
|
|
|
outline: none;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
.cache_link,
|
|
|
|
.proxyfied_link {
|
2017-02-12 14:06:01 +00:00
|
|
|
font-size: 0.9em !important;
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
.content,
|
|
|
|
.stat,
|
|
|
|
.altlink {
|
2017-02-12 14:06:01 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
max-width: 54em;
|
2021-06-22 11:50:06 +00:00
|
|
|
word-wrap: break-word;
|
2017-02-12 14:06:01 +00:00
|
|
|
line-height: 1.24;
|
|
|
|
|
|
|
|
.highlight {
|
2021-10-06 18:12:51 +00:00
|
|
|
color: var(--color-result-description-highlight-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
background: inherit;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.codelines {
|
|
|
|
.highlight {
|
|
|
|
color: inherit;
|
|
|
|
background: inherit;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.url {
|
2021-10-26 21:58:37 +00:00
|
|
|
font-size: 0.96em;
|
2017-02-12 14:06:01 +00:00
|
|
|
margin: 0 0 3px 0;
|
|
|
|
padding: 0;
|
|
|
|
max-width: 54em;
|
2021-06-22 11:50:06 +00:00
|
|
|
word-wrap: break-word;
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-url-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.published_date {
|
|
|
|
font-size: 0.8em;
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-publishdate-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
&.thumbnail {
|
|
|
|
float: left;
|
|
|
|
padding: 0 5px 10px 0;
|
|
|
|
width: 20em;
|
|
|
|
min-width: 20em;
|
|
|
|
min-height: 8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.image {
|
|
|
|
float: left;
|
|
|
|
padding: 0 5px 10px 0;
|
|
|
|
width: 100px;
|
|
|
|
max-height: 100px;
|
|
|
|
object-fit: scale-down;
|
|
|
|
object-position: right top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.break {
|
2021-06-22 11:50:06 +00:00
|
|
|
clear: both;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.category-social .image {
|
|
|
|
width: auto !important;
|
|
|
|
min-width: 48px;
|
|
|
|
min-height: 48px;
|
|
|
|
padding: 0 5px 25px 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.result-videos .content {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.engines {
|
|
|
|
float: right;
|
2021-10-08 14:06:48 +00:00
|
|
|
color: var(--color-result-engines-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: smaller;
|
|
|
|
margin: 0 0.5em 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.small_font {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlight {
|
2021-10-06 18:12:51 +00:00
|
|
|
color: var(--color-result-link-font-highlight);
|
2017-02-12 14:06:01 +00:00
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.result-images {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
max-height: 200px;
|
2021-10-29 16:57:36 +00:00
|
|
|
border: none;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
float: inherit;
|
2021-10-02 09:57:08 +00:00
|
|
|
margin: 0.125rem;
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
max-height: 200px;
|
2021-10-06 18:12:51 +00:00
|
|
|
background: var(--color-result-image-background);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-02 09:57:08 +00:00
|
|
|
span.title {
|
2017-02-12 14:06:01 +00:00
|
|
|
display: none;
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-image-span-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-02 09:57:08 +00:00
|
|
|
&:hover span.title {
|
2017-02-12 14:06:01 +00:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 4px;
|
|
|
|
margin: 0 0 4px 4px;
|
2021-10-02 09:57:08 +00:00
|
|
|
// color: @color-result-image-span-font;
|
2021-09-28 20:41:56 +00:00
|
|
|
background-color: var(--color-result-image-span-background-hover);
|
2017-02-12 14:06:01 +00:00
|
|
|
font-size: 0.7em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-04 07:35:26 +00:00
|
|
|
.result-map {
|
|
|
|
img.image {
|
|
|
|
float: right !important;
|
|
|
|
height: 100px !important;
|
|
|
|
width: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
2021-06-22 11:50:06 +00:00
|
|
|
font-size: 0.9em;
|
2021-06-04 07:35:26 +00:00
|
|
|
width: auto;
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 0 0.35rem;
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-weight: inherit;
|
|
|
|
width: 17rem;
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-09 15:33:41 +00:00
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
#results {
|
2021-09-25 13:59:10 +00:00
|
|
|
margin: 2rem 2rem 0 @results-offset;
|
2021-06-25 09:31:14 +00:00
|
|
|
display: grid;
|
2021-09-26 11:01:22 +00:00
|
|
|
grid-template-columns: @results-width 25rem;
|
2021-09-25 13:59:10 +00:00
|
|
|
grid-template-rows: min-content min-content 1fr min-content;
|
|
|
|
gap: 0 @results-gap;
|
2021-06-25 09:31:14 +00:00
|
|
|
grid-template-areas:
|
2021-09-26 11:01:22 +00:00
|
|
|
"corrections sidebar"
|
2021-06-25 09:31:14 +00:00
|
|
|
"answers sidebar"
|
|
|
|
"urls sidebar"
|
|
|
|
"pagination sidebar";
|
|
|
|
}
|
|
|
|
|
|
|
|
#results #sidebar *:first-child,
|
|
|
|
#results #urls *:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#urls {
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
2021-06-25 09:31:14 +00:00
|
|
|
grid-area: urls;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#suggestions {
|
|
|
|
.wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
form {
|
|
|
|
display: inline-block;
|
|
|
|
flex: 1 1 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
#suggestions,
|
2021-11-03 22:59:50 +00:00
|
|
|
#infoboxes {
|
2017-02-12 14:06:01 +00:00
|
|
|
input {
|
|
|
|
padding: 0;
|
|
|
|
margin: 3px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
display: inline-block;
|
|
|
|
background: transparent;
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-search-url-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
input[type="submit"],
|
|
|
|
.infobox .url a {
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-result-link-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
text-decoration: none;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#corrections {
|
2021-09-26 11:01:22 +00:00
|
|
|
grid-area: corrections;
|
2017-02-12 14:06:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2021-09-26 11:01:22 +00:00
|
|
|
margin: 0 0 1em 0;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
h4,
|
|
|
|
input[type="submit"] {
|
2017-02-12 14:06:01 +00:00
|
|
|
display: inline-block;
|
2021-11-03 22:59:50 +00:00
|
|
|
padding: 0.5rem;
|
|
|
|
margin: 0.5rem;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-11-03 22:59:50 +00:00
|
|
|
input[type="submit"] {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
.rounded-corners-tiny;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
#suggestions .title,
|
|
|
|
#search_url .title,
|
|
|
|
#apis .title {
|
2017-02-12 14:06:01 +00:00
|
|
|
margin: 2em 0 0.5em 0;
|
2021-10-06 18:12:51 +00:00
|
|
|
color: var(--color-base-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#answers {
|
2021-06-25 09:31:14 +00:00
|
|
|
grid-area: answers;
|
2021-10-08 14:06:48 +00:00
|
|
|
border: 1px solid var(--color-answer-border);
|
2021-11-01 16:20:52 +00:00
|
|
|
background: var(--color-answer-background);
|
2021-11-03 22:59:50 +00:00
|
|
|
padding: @result-padding;
|
|
|
|
margin: 1rem @results-tablet-offset;
|
|
|
|
margin-top: 0;
|
2021-10-08 14:06:48 +00:00
|
|
|
color: var(--color-answer-font);
|
2021-10-06 18:12:51 +00:00
|
|
|
.rounded-corners;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
h4 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
#infoboxes {
|
2017-02-12 14:06:01 +00:00
|
|
|
form {
|
|
|
|
min-width: 210px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
2021-06-25 09:31:14 +00:00
|
|
|
grid-area: sidebar;
|
2017-02-12 14:06:01 +00:00
|
|
|
word-wrap: break-word;
|
2021-10-08 14:06:48 +00:00
|
|
|
color: var(--color-sidebar-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
.infobox {
|
|
|
|
margin: 10px 0 10px;
|
2021-10-08 14:06:48 +00:00
|
|
|
border: 1px solid var(--color-sidebar-border);
|
2021-10-29 16:57:36 +00:00
|
|
|
padding: 1rem;
|
2017-02-12 14:06:01 +00:00
|
|
|
font-size: 0.9em;
|
2021-10-06 18:12:51 +00:00
|
|
|
.rounded-corners;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
h2 {
|
2021-06-22 11:50:06 +00:00
|
|
|
margin: 0 0 0.5em 0;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 12em;
|
|
|
|
display: block;
|
2021-10-30 10:05:36 +00:00
|
|
|
margin: 0 auto;
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl {
|
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
display: inline;
|
|
|
|
margin: 0.5em 0.25em 0.5em 0;
|
|
|
|
padding: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
display: inline;
|
|
|
|
margin: 0.5em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
br {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
.attributes,
|
|
|
|
.urls {
|
2017-02-12 14:06:01 +00:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_url {
|
|
|
|
margin-top: 8px;
|
|
|
|
|
2018-08-09 14:13:50 +00:00
|
|
|
div.selectable_url {
|
2017-02-12 14:06:01 +00:00
|
|
|
pre {
|
|
|
|
width: 200em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#linkto_preferences {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
2021-10-28 14:14:34 +00:00
|
|
|
top: 2rem;
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
display: block;
|
|
|
|
font-size: 1.2em;
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-search-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
a:link *,
|
|
|
|
a:hover *,
|
|
|
|
a:visited *,
|
|
|
|
a:active * {
|
2021-09-28 20:41:56 +00:00
|
|
|
color: var(--color-search-font);
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#pagination {
|
2021-06-25 09:31:14 +00:00
|
|
|
grid-area: pagination;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
br {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#apis {
|
|
|
|
margin-top: 8px;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backToTop {
|
2021-10-08 14:06:48 +00:00
|
|
|
border: 1px solid var(--color-backtotop-border);
|
2021-09-26 11:01:22 +00:00
|
|
|
margin: 0;
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
font-size: 1em;
|
2021-10-08 14:06:48 +00:00
|
|
|
background: var(--color-backtotop-background);
|
2017-02-12 14:06:01 +00:00
|
|
|
position: fixed;
|
2021-09-26 11:01:22 +00:00
|
|
|
bottom: 8rem;
|
|
|
|
left: @results-width + @results-offset + (0.5 * @results-gap - 1.2em);
|
2017-02-12 14:06:01 +00:00
|
|
|
transition: opacity 0.5s;
|
|
|
|
opacity: 0;
|
2021-10-06 18:12:51 +00:00
|
|
|
.rounded-corners;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
2021-10-06 18:12:51 +00:00
|
|
|
padding: 0.7em;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
2021-10-30 18:43:40 +00:00
|
|
|
|
|
|
|
a,
|
|
|
|
a:visited,
|
|
|
|
a:hover,
|
|
|
|
a:active {
|
|
|
|
color: var(--color-backtotop-font);
|
|
|
|
}
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-02 09:57:08 +00:00
|
|
|
#results.scrolling #backToTop {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2021-10-18 19:57:32 +00:00
|
|
|
@media screen and (max-width: @tablet) {
|
2021-06-22 11:50:06 +00:00
|
|
|
#main_preferences,
|
|
|
|
#main_about,
|
|
|
|
#main_stats {
|
2021-09-26 11:01:22 +00:00
|
|
|
margin: 2rem 0.5rem;
|
2017-02-12 14:06:01 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#infoboxes {
|
|
|
|
position: inherit;
|
|
|
|
max-width: inherit;
|
|
|
|
|
|
|
|
.infobox {
|
2021-06-22 11:50:06 +00:00
|
|
|
clear: both;
|
2017-02-12 14:06:01 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
float: left;
|
|
|
|
max-width: 10em;
|
|
|
|
margin: 0.5em 0.5em 0.5em 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
2021-10-08 14:06:48 +00:00
|
|
|
margin-bottom: @results-margin;
|
2017-02-12 14:06:01 +00:00
|
|
|
padding: 0;
|
|
|
|
float: none;
|
|
|
|
border: none;
|
|
|
|
width: auto;
|
|
|
|
|
|
|
|
input {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#apis {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_url {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.result {
|
|
|
|
.thumbnail {
|
|
|
|
max-width: 98%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.url {
|
|
|
|
span.url {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.engines {
|
|
|
|
float: right;
|
|
|
|
padding: 0 0 3px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.result-images {
|
|
|
|
border-bottom: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image_result {
|
|
|
|
max-width: 98%;
|
2021-06-22 11:50:06 +00:00
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
img {
|
|
|
|
max-width: 98%;
|
|
|
|
}
|
|
|
|
}
|
2021-09-25 13:59:10 +00:00
|
|
|
|
|
|
|
#backToTop {
|
2021-09-26 11:01:22 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pagination {
|
2021-09-27 11:46:40 +00:00
|
|
|
margin: 2rem 0 0 0 !important;
|
2021-09-25 13:59:10 +00:00
|
|
|
}
|
2021-09-25 15:44:54 +00:00
|
|
|
|
|
|
|
#main_results div#results {
|
2021-10-16 22:35:21 +00:00
|
|
|
margin: 2rem auto 0 auto;
|
|
|
|
justify-content: center;
|
2021-09-25 15:44:54 +00:00
|
|
|
display: grid;
|
2021-09-26 11:01:22 +00:00
|
|
|
grid-template-columns: @results-width;
|
2021-09-25 15:44:54 +00:00
|
|
|
grid-template-rows: min-content min-content min-content 1fr min-content min-content;
|
|
|
|
gap: 0;
|
|
|
|
grid-template-areas:
|
2021-09-26 11:01:22 +00:00
|
|
|
"corrections"
|
2021-09-25 15:44:54 +00:00
|
|
|
"answers"
|
|
|
|
"sidebar"
|
|
|
|
"urls"
|
|
|
|
"pagination";
|
|
|
|
}
|
2021-09-26 11:01:22 +00:00
|
|
|
|
|
|
|
article[data-vim-selected]::before {
|
2021-10-16 22:35:21 +00:00
|
|
|
left: calc(((100% - @results-width) / 2) - 20px);
|
2021-09-26 11:01:22 +00:00
|
|
|
}
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 14:13:50 +00:00
|
|
|
#main_results div#results.only_template_images {
|
2021-09-25 13:59:10 +00:00
|
|
|
margin: 2rem @results-tablet-offset 0 @results-tablet-offset;
|
2021-06-25 09:31:14 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
grid-template-rows: min-content min-content 1fr min-content min-content;
|
2021-09-25 13:59:10 +00:00
|
|
|
gap: 0;
|
2021-06-25 09:31:14 +00:00
|
|
|
grid-template-areas:
|
2021-09-26 11:01:22 +00:00
|
|
|
"corrections"
|
2021-06-25 09:31:14 +00:00
|
|
|
"urls"
|
2021-09-26 11:01:22 +00:00
|
|
|
"answers"
|
2021-06-25 09:31:14 +00:00
|
|
|
"sidebar"
|
|
|
|
"pagination";
|
2018-08-09 14:13:50 +00:00
|
|
|
|
2021-06-22 11:50:06 +00:00
|
|
|
#urls {
|
2021-06-25 09:31:14 +00:00
|
|
|
width: inherit;
|
2021-09-25 13:59:10 +00:00
|
|
|
margin: 0;
|
2021-06-22 11:50:06 +00:00
|
|
|
}
|
2021-09-27 11:46:40 +00:00
|
|
|
|
|
|
|
#backToTop {
|
|
|
|
left: auto;
|
2021-10-28 14:14:34 +00:00
|
|
|
right: 1rem;
|
2021-09-27 11:46:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#pagination {
|
|
|
|
margin-right: 4rem;
|
|
|
|
}
|
2021-06-25 09:31:14 +00:00
|
|
|
}
|
2018-08-09 14:13:50 +00:00
|
|
|
|
2021-10-18 19:57:32 +00:00
|
|
|
@media screen and (max-width: @phone) {
|
2021-09-25 13:59:10 +00:00
|
|
|
#main_results div#results {
|
|
|
|
grid-template-columns: 100%;
|
2021-09-25 16:29:12 +00:00
|
|
|
margin: 2rem 0 0 0;
|
2021-09-25 13:59:10 +00:00
|
|
|
}
|
2018-08-09 14:13:50 +00:00
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
article[data-vim-selected]::before {
|
|
|
|
display: none;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
#linkto_preferences {
|
|
|
|
display: none;
|
2021-06-22 12:15:47 +00:00
|
|
|
position: fixed !important;
|
2017-02-12 14:06:01 +00:00
|
|
|
top: 100px;
|
2021-06-22 11:50:06 +00:00
|
|
|
right: 0;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
margin: 0 5px 2px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#results {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-09-26 11:01:22 +00:00
|
|
|
#pagination {
|
2021-09-27 11:46:40 +00:00
|
|
|
margin: 2rem 1rem 0 1rem !important;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-08 14:06:48 +00:00
|
|
|
.rounded-corners;
|
2017-02-12 14:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 16:57:36 +00:00
|
|
|
border: 1px solid var(--color-result-border);
|
|
|
|
.rounded-corners;
|
|
|
|
}
|
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
.result-images {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 19:57:32 +00:00
|
|
|
@media screen and (max-width: @small-phone) {
|
2017-02-12 14:06:01 +00:00
|
|
|
.result-videos {
|
|
|
|
img.thumbnail {
|
|
|
|
float: none !important;
|
|
|
|
}
|
2021-06-22 11:50:06 +00:00
|
|
|
|
2017-02-12 14:06:01 +00:00
|
|
|
.content {
|
|
|
|
overflow: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 21:22:44 +00:00
|
|
|
|
|
|
|
pre code {
|
2021-06-22 11:50:06 +00:00
|
|
|
white-space: pre-wrap;
|
2020-06-04 21:22:44 +00:00
|
|
|
}
|