2015-02-15 18:09:17 +00:00
|
|
|
/*
|
|
|
|
* searx, A privacy-respecting, hackable metasearch engine
|
|
|
|
*/
|
|
|
|
|
|
|
|
.search {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_wrapper {
|
|
|
|
position: relative;
|
|
|
|
width: @results-width;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center #search_wrapper {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.q {
|
|
|
|
background: none repeat scroll 0 0 @color-search-background;
|
|
|
|
border: 1px solid @color-search-border;
|
|
|
|
color: @color-search-font;
|
|
|
|
font-size: 16px;
|
2015-02-17 17:50:57 +00:00
|
|
|
font-family: "Courier New", Courier, monospace;
|
2015-02-15 18:09:17 +00:00
|
|
|
height: 28px;
|
|
|
|
margin: 0;
|
|
|
|
outline: medium none;
|
|
|
|
padding: 2px;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 0px !important;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_submit {
|
|
|
|
position: absolute;
|
2015-02-17 00:07:14 +00:00
|
|
|
top: 15px;
|
|
|
|
right: 5px;
|
2015-02-15 18:09:17 +00:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
background: url('../img/search-icon-pixel.png') no-repeat;
|
|
|
|
background-size: 24px 24px;
|
|
|
|
opacity: 0.8;
|
|
|
|
width: 24px;
|
2015-02-17 00:07:14 +00:00
|
|
|
height: 24px;
|
2015-02-15 18:09:17 +00:00
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: @results-width) {
|
|
|
|
#search_wrapper {
|
|
|
|
width: 90%;
|
|
|
|
clear:both;
|
|
|
|
overflow: hidden
|
|
|
|
}
|
|
|
|
}
|