hubl/src/styles/filters.scss

53 lines
1003 B
SCSS

%filters {
border-bottom: 1px solid $color-grey1;
display: grid;
grid-gap: 0px 15px;
grid-template-columns: 50% 50%;
grid-template-rows: 3.5em 3.5em;
padding-bottom: 3em;
label {
display: block;
}
input, select {
appearance: none;
border-style: none;
box-shadow: 0 0 5px 0 rgba(133, 140, 148, 0.09);
font-size: 85%;
line-height: 1.80;
margin-top: 1em;
width: 95%;
-moz-appearance: none;
-webkit-appearance: none;
}
input[type="submit"] {
display: none;
}
select {
background: white;
background-image: url("/images/chevron-down.png");
background-position: 96% 60%;
background-repeat: no-repeat;
background-size: 14px 9px;
box-sizing: border-box;
display: inline-block;
padding: 0.5em 12.5em 0.5em 1em;
}
sib-form-label-text {
display: flex;
flex-direction: column;
}
}
#offers-list > sib-form > form {
@extend %filters;
}
#profiles-list > sib-form > form {
@extend %filters;
}