webapp/src/styles/views/Search.module.scss

47 lines
752 B
SCSS
Raw Normal View History

2022-09-09 11:53:35 +00:00
.search-form {
@include media-breakpoint-down(sm) {
margin-left: divide(-$container-padding-x, 2);
margin-right: divide(-$container-padding-x, 2);
}
2024-07-12 13:19:49 +00:00
display: flex;
margin-bottom: 2em;
margin-top: 2em;
2022-09-09 11:53:35 +00:00
input,
button {
display: block;
width: 100%;
}
input {
2024-10-03 09:01:44 +00:00
font-size:4rem;
2023-05-01 18:32:32 +00:00
border: none;
border-bottom: 1px solid #ccc;
2022-09-09 11:53:35 +00:00
height: 100%;
}
button {
2024-10-03 09:01:44 +00:00
font-size:2rem;
2022-09-09 11:53:35 +00:00
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%;
}