2018-12-11 12:42:56 +02:00
|
|
|
@import "variables";
|
|
|
|
@import "globals";
|
|
|
|
@import "header";
|
|
|
|
|
|
|
|
|
|
|
|
/* search */
|
|
|
|
.search-button {
|
|
|
|
background: white;
|
|
|
|
bottom: -18px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-button img {
|
|
|
|
max-width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-box {
|
|
|
|
padding: 1em;
|
|
|
|
width: 50%;
|
|
|
|
background: $light-gray-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-box::placeholder {
|
|
|
|
color: black;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
.search-box::placeholder {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
.search-box::placeholder {
|
|
|
|
font-size: .75em;
|
|
|
|
}
|
2018-12-13 18:19:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// filter
|
|
|
|
.filter-box{
|
|
|
|
background: $light-gray-color;
|
|
|
|
padding: 1em;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
text-align: left;
|
2018-12-11 12:42:56 +02:00
|
|
|
}
|