2017-02-12 15:06:01 +01:00
|
|
|
/*
|
2021-10-01 16:33:31 +02:00
|
|
|
* SearXNG, A privacy-respecting, hackable metasearch engine
|
2017-02-12 15:06:01 +01:00
|
|
|
*/
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
#search {
|
2021-11-21 21:38:00 +01:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_header {
|
2021-10-29 18:57:36 +02:00
|
|
|
padding: 1.5em 2em 0 @results-offset - 3rem;
|
2017-02-12 15:06:01 +01:00
|
|
|
margin: 0;
|
2021-10-08 16:06:48 +02:00
|
|
|
background: var(--color-header-background);
|
|
|
|
border-bottom: 1px solid var(--color-header-border);
|
2021-10-26 23:11:51 +02:00
|
|
|
display: grid;
|
2021-10-29 18:57:36 +02:00
|
|
|
column-gap: 1.2rem;
|
2021-10-28 16:14:34 +02:00
|
|
|
row-gap: 1rem;
|
2021-10-26 23:11:51 +02:00
|
|
|
grid-template-columns: 3rem 1fr;
|
|
|
|
grid-template-areas:
|
|
|
|
"logo search"
|
|
|
|
"spacer categories";
|
|
|
|
}
|
|
|
|
|
2021-11-13 10:42:07 +01:00
|
|
|
.category {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
margin-right: 1rem;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
svg {
|
|
|
|
padding-right: 0.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.2rem 0;
|
|
|
|
display: inline-flex;
|
|
|
|
text-transform: capitalize;
|
|
|
|
font-size: 0.9em;
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
.disable-user-select;
|
|
|
|
|
|
|
|
div.category_name {
|
|
|
|
margin: auto 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"]:checked + label {
|
|
|
|
color: var(--color-categories-item-selected-font);
|
|
|
|
border-bottom: 2px solid var(--color-categories-item-border-selected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-26 23:11:51 +02:00
|
|
|
#search_logo {
|
|
|
|
grid-area: logo;
|
2021-11-08 11:05:02 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-10-26 23:11:51 +02:00
|
|
|
|
2021-11-08 11:05:02 +01:00
|
|
|
svg {
|
|
|
|
flex: 1;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin: 0.5rem 0 auto 0;
|
|
|
|
}
|
2021-10-26 23:11:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.search_categories {
|
|
|
|
grid-area: categories;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
2021-11-21 21:38:00 +01:00
|
|
|
.search_box {
|
|
|
|
margin: 0;
|
2021-10-26 23:11:51 +02:00
|
|
|
padding: 0;
|
|
|
|
grid-area: search;
|
2017-02-12 15:06:01 +01:00
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: row;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
#clear_search {
|
|
|
|
display: block;
|
|
|
|
border-collapse: separate;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 1.8em;
|
|
|
|
margin: 0;
|
2021-10-06 20:12:51 +02:00
|
|
|
padding: 8px 2px;
|
2021-09-28 22:41:56 +02:00
|
|
|
background: none repeat scroll 0 0 var(--color-search-background);
|
|
|
|
border-top: 1px solid var(--color-search-border);
|
|
|
|
border-bottom: 1px solid var(--color-search-border);
|
2018-08-09 16:13:50 +02:00
|
|
|
border-right: none;
|
|
|
|
border-left: none;
|
2021-06-22 13:50:06 +02:00
|
|
|
border-radius: 0;
|
2018-08-09 16:13:50 +02:00
|
|
|
outline: none;
|
2021-09-28 22:41:56 +02:00
|
|
|
color: var(--color-search-font);
|
2018-08-09 16:13:50 +02:00
|
|
|
font-size: 16px;
|
|
|
|
z-index: 10000;
|
|
|
|
|
|
|
|
&:hover {
|
2021-10-06 20:12:51 +02:00
|
|
|
color: var(--color-search-background-hover);
|
2018-08-09 16:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.empty * {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
#q,
|
|
|
|
#send_search {
|
2017-02-12 15:06:01 +01:00
|
|
|
display: block !important;
|
|
|
|
border-collapse: separate;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
2021-11-13 10:42:07 +01:00
|
|
|
padding: 10px;
|
2021-09-28 22:41:56 +02:00
|
|
|
background: none repeat scroll 0 0 var(--color-search-background);
|
|
|
|
border: 1px solid var(--color-search-border);
|
2021-06-22 13:50:06 +02:00
|
|
|
border-radius: 0;
|
2017-02-12 15:06:01 +01:00
|
|
|
outline: none;
|
2021-09-28 22:41:56 +02:00
|
|
|
color: var(--color-search-font);
|
2017-02-12 15:06:01 +01:00
|
|
|
font-size: 16px;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#q {
|
|
|
|
outline: medium none;
|
2021-10-06 20:12:51 +02:00
|
|
|
padding-left: 12px;
|
2021-06-22 13:50:06 +02:00
|
|
|
padding-right: 0 !important;
|
2017-02-12 15:06:01 +01:00
|
|
|
border-right: none;
|
|
|
|
width: @search-width;
|
2021-10-06 20:12:51 +02:00
|
|
|
border-radius: 10px 0 0 10px;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
2021-06-22 14:15:47 +02:00
|
|
|
#q::-ms-clear,
|
|
|
|
#q::-webkit-search-cancel-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
#send_search {
|
|
|
|
border-left: none;
|
2021-10-06 20:12:51 +02:00
|
|
|
border-radius: 0 10px 10px 0;
|
2017-02-12 15:06:01 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
2021-10-06 20:12:51 +02:00
|
|
|
background-color: var(--color-search-background-hover);
|
|
|
|
color: var(--color-search-background);
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:38:00 +01:00
|
|
|
.no-js #clear_search,
|
2017-02-12 15:06:01 +01:00
|
|
|
.no-js #send_search {
|
|
|
|
width: auto !important;
|
2021-11-21 21:38:00 +01:00
|
|
|
border-left: 1px solid var(--color-search-border);
|
|
|
|
padding: 10px;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.search_filters {
|
2021-11-21 21:38:00 +01:00
|
|
|
margin: 0.6rem 0 0 @results-offset + 0.6rem;
|
|
|
|
|
|
|
|
select {
|
|
|
|
background-color: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: var(--color-base-font);
|
|
|
|
}
|
|
|
|
}
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
2021-10-18 21:57:32 +02:00
|
|
|
@media screen and (max-width: @tablet) {
|
2021-11-21 21:38:00 +01:00
|
|
|
#search_header {
|
2021-10-26 23:11:51 +02:00
|
|
|
padding: 1.5em @results-tablet-offset 0 @results-tablet-offset;
|
|
|
|
column-gap: @results-tablet-offset;
|
2021-09-25 15:59:10 +02:00
|
|
|
}
|
|
|
|
|
2021-11-21 21:38:00 +01:00
|
|
|
.search_filters {
|
|
|
|
margin: 0.6rem 0 0 @results-tablet-offset + 3rem;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
#categories {
|
|
|
|
font-size: 90%;
|
|
|
|
clear: both;
|
|
|
|
|
|
|
|
.checkbox_container {
|
|
|
|
margin: auto;
|
2021-06-22 14:15:47 +02:00
|
|
|
margin-top: 2px;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html.touch {
|
2021-06-22 13:50:06 +02:00
|
|
|
#main_index,
|
|
|
|
#main_results {
|
2017-02-12 15:06:01 +01:00
|
|
|
#categories_container {
|
|
|
|
width: 1000px;
|
|
|
|
width: -moz-max-content;
|
|
|
|
width: -webkit-max-content;
|
|
|
|
width: max-content;
|
|
|
|
|
|
|
|
.category {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#categories {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 21:57:32 +02:00
|
|
|
@media screen and (max-width: @phone) {
|
2021-11-21 21:38:00 +01:00
|
|
|
#search_header {
|
2017-02-12 15:06:01 +01:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2021-11-21 21:38:00 +01:00
|
|
|
padding: 0.1rem 0 0 0;
|
2021-10-26 23:11:51 +02:00
|
|
|
column-gap: 0;
|
|
|
|
row-gap: 0;
|
|
|
|
grid-template-areas:
|
|
|
|
"logo search"
|
|
|
|
"categories categories";
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_logo {
|
|
|
|
padding: 0;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.search_box {
|
2021-11-13 10:42:07 +01:00
|
|
|
// hack, should be 100% ?
|
2017-02-12 15:06:01 +01:00
|
|
|
width: 99%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#q {
|
2021-11-11 22:26:26 +01:00
|
|
|
width: 100%;
|
2017-02-12 15:06:01 +01:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2021-11-06 18:04:17 +01:00
|
|
|
#main_results #q:placeholder-shown ~ #send_search {
|
|
|
|
margin-right: 2.6rem;
|
|
|
|
transition: margin-right 0.1s;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
.search_filters {
|
2021-11-21 21:38:00 +01:00
|
|
|
margin: 0;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
.language,
|
|
|
|
.time_range {
|
2017-02-12 15:06:01 +01:00
|
|
|
width: 45%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.category {
|
|
|
|
display: block;
|
2021-06-25 11:31:14 +02:00
|
|
|
width: 100%;
|
2021-11-13 10:42:07 +01:00
|
|
|
margin: 0;
|
2017-02-12 15:06:01 +01:00
|
|
|
|
|
|
|
label {
|
2021-11-13 10:42:07 +01:00
|
|
|
padding: 0.8rem !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-11 22:26:26 +01:00
|
|
|
@media screen and (max-width: @ultra-small-phone) {
|
2021-11-21 21:38:00 +01:00
|
|
|
#search_header {
|
2021-11-11 22:26:26 +01:00
|
|
|
grid-template-areas:
|
|
|
|
"search search"
|
|
|
|
"categories categories";
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_logo {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
#categories {
|
|
|
|
.disable-user-select;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#categories_container {
|
|
|
|
position: relative;
|
|
|
|
}
|