mirror of
https://github.com/searxng/searxng.git
synced 2026-05-14 15:05:47 +02:00
e2d312f6ae
* index page: margin top is 24% of the view port. avoid to scroll a small screen, center the content in the middle of the screen * link to preferences at the same height same the input fields * increase the category tab heighs * increase the margin bottom of the query field * in the results, change the h3 margin top and bottom to 0.4rem (6px) * move the back to top button slightly on the right when the results are only images
60 lines
806 B
Plaintext
60 lines
806 B
Plaintext
#main_index {
|
|
margin-top: 24vh;
|
|
|
|
#linkto_preferences {
|
|
right: 1.8rem;
|
|
}
|
|
}
|
|
|
|
.index {
|
|
text-align: center;
|
|
|
|
.title {
|
|
background: url('../img/searx.png') no-repeat;
|
|
width: 100%;
|
|
min-height: 80px;
|
|
background-position: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 5em;
|
|
visibility: hidden;
|
|
}
|
|
|
|
#search {
|
|
margin: 0 auto;
|
|
background: inherit;
|
|
border: inherit;
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
|
|
.search_filters {
|
|
display: block;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.category label {
|
|
padding: 6px 10px;
|
|
border-bottom: initial !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @tablet) {
|
|
div.title {
|
|
h1 {
|
|
font-size: 1em;
|
|
}
|
|
}
|
|
|
|
#main_index {
|
|
margin-top: 6em;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @phone) {
|
|
#main_index {
|
|
margin-top: 0;
|
|
}
|
|
}
|