mirror of https://github.com/searxng/searxng.git
[theme] cleanup grid layout and remove various margins and paddings from elements
This commit is contained in:
parent
cc3c54f4cd
commit
385dce213b
|
@ -31,8 +31,10 @@
|
||||||
|
|
||||||
@color-url-font: #29314d;
|
@color-url-font: #29314d;
|
||||||
@color-url-visited-font: #684898;
|
@color-url-visited-font: #684898;
|
||||||
@results-width: 50em;
|
@results-width: 40em;
|
||||||
@results-offset: 4rem;
|
@results-offset: 8rem;
|
||||||
|
@results-tablet-offset: 0.5rem;
|
||||||
|
@results-gap: 4em;
|
||||||
@search-width: 40em;
|
@search-width: 40em;
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -41,6 +43,16 @@
|
||||||
|
|
||||||
/// Start-Screen
|
/// Start-Screen
|
||||||
|
|
||||||
|
/// Header
|
||||||
|
|
||||||
|
@color-header-background: #f7f7f7;
|
||||||
|
@color-header-border: #d7d7d7;
|
||||||
|
|
||||||
|
/// Footer
|
||||||
|
|
||||||
|
@color-footer-background: #f7f7f7;
|
||||||
|
@color-footer-border: #d7d7d7;
|
||||||
|
|
||||||
/// Search-Input
|
/// Search-Input
|
||||||
|
|
||||||
@color-search-border: @color-base;
|
@color-search-border: @color-base;
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#search {
|
#search {
|
||||||
padding: 0 2em;
|
padding: 0 2em 0 @results-offset;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background: #f7f7f7;
|
background: @color-header-background;
|
||||||
border-bottom: 1px solid #d7d7d7;
|
border-bottom: 1px solid @color-header-border;
|
||||||
}
|
}
|
||||||
|
|
||||||
#search_wrapper {
|
#search_wrapper {
|
||||||
|
@ -104,7 +104,11 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 75em) {
|
@media screen and (max-width: 1250px) {
|
||||||
|
#search {
|
||||||
|
padding: 0 @results-tablet-offset;
|
||||||
|
}
|
||||||
|
|
||||||
#categories {
|
#categories {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
|
@ -78,8 +78,8 @@ footer {
|
||||||
padding: 1em 0;
|
padding: 1em 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: #f2f2f2;
|
background-color: @color-footer-background;
|
||||||
border-top: 1px solid #e4e4e4;
|
border-top: 1px solid @color-footer-border;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
@ -102,7 +102,6 @@ footer {
|
||||||
input[type="submit"],
|
input[type="submit"],
|
||||||
#results button[type="submit"] {
|
#results button[type="submit"] {
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
margin: 2px 4px;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: @color-download-button-background;
|
background: @color-download-button-background;
|
||||||
color: @color-download-button-font;
|
color: @color-download-button-font;
|
||||||
|
@ -365,11 +364,11 @@ article.result-images[data-vim-selected]::before {
|
||||||
}
|
}
|
||||||
|
|
||||||
#results {
|
#results {
|
||||||
margin: 2rem 2rem 0 2rem;
|
margin: 2rem 2rem 0 @results-offset;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: (@results-width + @results-offset) 1fr;
|
grid-template-columns: (@results-width + @results-offset) 25em;
|
||||||
grid-template-rows: min-content 1fr min-content;
|
grid-template-rows: min-content min-content 1fr min-content;
|
||||||
gap: 0 3rem;
|
gap: 0 @results-gap;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"answers sidebar"
|
"answers sidebar"
|
||||||
"suggestions sidebar"
|
"suggestions sidebar"
|
||||||
|
@ -384,7 +383,6 @@ article.result-images[data-vim-selected]::before {
|
||||||
}
|
}
|
||||||
|
|
||||||
#urls {
|
#urls {
|
||||||
margin: 0.5em 2em 20px 0;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
grid-area: urls;
|
grid-area: urls;
|
||||||
}
|
}
|
||||||
|
@ -486,9 +484,6 @@ article.result-images[data-vim-selected]::before {
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
grid-area: sidebar;
|
grid-area: sidebar;
|
||||||
margin: 0 2px 5px 5px;
|
|
||||||
padding: 0 2px 2px;
|
|
||||||
max-width: 25em;
|
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
.infobox {
|
.infobox {
|
||||||
|
@ -592,7 +587,7 @@ article.result-images[data-vim-selected]::before {
|
||||||
background: white;
|
background: white;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 85px;
|
bottom: 85px;
|
||||||
left: @results-width;
|
left: @results-width + @results-offset + @results-gap;
|
||||||
transition: opacity 0.5s;
|
transition: opacity 0.5s;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
||||||
|
@ -632,8 +627,6 @@ article.result-images[data-vim-selected]::before {
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
max-width: @results-width;
|
|
||||||
margin: 0 0 2px 0;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
float: none;
|
float: none;
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -698,14 +691,18 @@ article.result-images[data-vim-selected]::before {
|
||||||
max-width: 98%;
|
max-width: 98%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#backToTop {
|
||||||
|
left: @results-width;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#main_results div#results.only_template_images {
|
#main_results div#results.only_template_images {
|
||||||
margin: 2rem 2rem 0 2rem;
|
margin: 2rem @results-tablet-offset 0 @results-tablet-offset;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 100%;
|
grid-template-columns: 100%;
|
||||||
grid-template-rows: min-content min-content 1fr min-content min-content;
|
grid-template-rows: min-content min-content 1fr min-content min-content;
|
||||||
gap: 0 3rem;
|
gap: 0;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"answers"
|
"answers"
|
||||||
"suggestions"
|
"suggestions"
|
||||||
|
@ -715,7 +712,7 @@ article.result-images[data-vim-selected]::before {
|
||||||
|
|
||||||
#urls {
|
#urls {
|
||||||
width: inherit;
|
width: inherit;
|
||||||
margin: 0 0 20px 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#backToTop {
|
#backToTop {
|
||||||
|
@ -724,23 +721,27 @@ article.result-images[data-vim-selected]::before {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
@media screen and (max-width: 1250px) {
|
@media screen and (max-width: 1250px) {
|
||||||
#main_results div#results {
|
#main_results div#results {
|
||||||
margin: 2rem 2rem 0 2rem;
|
margin: 2rem @results-tablet-offset 0 @results-tablet-offset;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: (@results-width + @results-offset) 1fr;
|
grid-template-columns: 50em;
|
||||||
grid-template-rows: min-content min-content min-content 1fr min-content min-content;
|
grid-template-rows: min-content min-content min-content 1fr min-content min-content;
|
||||||
gap: 0 3rem;
|
gap: 0;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"answers empty"
|
"answers"
|
||||||
"suggestions empty"
|
"suggestions"
|
||||||
"sidebar empty"
|
"sidebar"
|
||||||
"urls empty"
|
"urls"
|
||||||
"pagination empty";
|
"pagination";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 50em) {
|
||||||
|
#main_results div#results {
|
||||||
|
grid-template-columns: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
@media screen and (max-width: @results-width) {
|
@media screen and (max-width: @results-width) {
|
||||||
article[data-vim-selected]::before {
|
article[data-vim-selected]::before {
|
||||||
|
|
|
@ -107,7 +107,6 @@ div.selectable_url {
|
||||||
border: 1px solid @color-result-search-url-border;
|
border: 1px solid @color-result-search-url-border;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
color: @color-result-search-url-font;
|
color: @color-result-search-url-font;
|
||||||
width: 100%;
|
|
||||||
margin: 0.1em;
|
margin: 0.1em;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 1.2em;
|
height: 1.2em;
|
||||||
|
@ -121,9 +120,8 @@ div.selectable_url {
|
||||||
// dialog
|
// dialog
|
||||||
.dialog() {
|
.dialog() {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 70%;
|
|
||||||
padding: 1em 1em 1em 2.7em;
|
padding: 1em 1em 1em 2.7em;
|
||||||
margin: 0 8% 1em 8%;
|
margin: 0 0 1em 0;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
Loading…
Reference in New Issue