49 lines
774 B
SCSS
49 lines
774 B
SCSS
|
.search-form {
|
||
|
display: flex;
|
||
|
margin-bottom: 2em;
|
||
|
margin-top: 2em;
|
||
|
|
||
|
@include media-breakpoint-down(sm) {
|
||
|
margin-left: divide(-$container-padding-x, 2);
|
||
|
margin-right: divide(-$container-padding-x, 2);
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
button {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
border: none;
|
||
|
border-bottom: 1px solid #ccc;
|
||
|
@include font-size(4rem);
|
||
|
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
@include font-size(2rem);
|
||
|
|
||
|
line-height: 4rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.search__show-more {
|
||
|
border: 3px solid !important;
|
||
|
display: block;
|
||
|
padding-bottom: 56.2%;
|
||
|
position: relative;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.search__show-more-inner {
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
display: flex;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
}
|