65 lines
1020 B
SCSS
65 lines
1020 B
SCSS
/* Styles used by things related to search */
|
|
@import "client/common.css.scss";
|
|
|
|
/* Container for the search input */
|
|
.header .search {
|
|
position: absolute;
|
|
left: 50%;
|
|
margin-left: -125px;
|
|
top: 26px;
|
|
}
|
|
|
|
.searchtextinput {
|
|
border: 1px solid #fff;
|
|
background:none;
|
|
color:#fff;
|
|
font-size: 120%;
|
|
line-height: 120%;
|
|
width: 250px;
|
|
padding: 6px;
|
|
}
|
|
|
|
.searchresults {
|
|
background-color:$color8;
|
|
border:1px solid #000;
|
|
color:#000;
|
|
}
|
|
|
|
.searchresults h2 {
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
background-color: shade($color8, 10%);
|
|
}
|
|
|
|
.searchresults li {
|
|
clear:both;
|
|
padding: 8px;
|
|
}
|
|
|
|
.searchresults img {
|
|
float:left;
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 1px solid #333;
|
|
margin: 4px;
|
|
}
|
|
|
|
.searchresults .text {
|
|
color: #000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.searchresults .subtext {
|
|
display:block;
|
|
color: #000;
|
|
font-size: 90%;
|
|
}
|
|
|
|
.query-distance-params {
|
|
float: left;
|
|
// width: 80px;
|
|
margin-left: 2px;
|
|
border: none;
|
|
}
|
|
|