40 lines
607 B
SCSS
40 lines
607 B
SCSS
|
@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;
|
||
|
}
|
||
|
}
|