hubl/src/styles/components/filters.scss

60 lines
1.1 KiB
SCSS
Raw Normal View History

2020-05-11 18:20:13 +00:00
/*%filters {
2018-12-11 12:42:53 +00:00
display: grid;
grid-gap: 0px 15px;
grid-template-columns: 1fr 1fr;
2018-12-18 10:54:43 +00:00
grid-template-rows: 3.5em 3.5em;
2018-12-11 12:42:53 +00:00
label {
display: block;
}
input, select {
2018-12-12 23:35:23 +00:00
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
2018-12-11 12:42:53 +00:00
border-style: none;
box-shadow: 0 0 5px 0 rgba(133, 140, 148, 0.09);
2019-05-13 16:50:34 +00:00
color: $color-210-5-56;
font-size: 1.36rem;
2018-12-14 16:16:38 +00:00
line-height: 1.80;
margin-top: 1.36rem;
padding: 0.9rem;
width: 95%;
2018-12-11 12:42:53 +00:00
}
input[type="submit"] {
display: none;
}
select {
2019-05-13 16:50:34 +00:00
background: $color-0-0-100;
2018-12-17 22:21:10 +00:00
background-image: url("/images/chevron-down.png");
background-position: right 12px top 60%;
2018-12-17 22:21:10 +00:00
background-repeat: no-repeat;
background-size: 14px 9px;
2018-12-12 10:13:03 +00:00
box-sizing: border-box;
2018-12-11 12:42:53 +00:00
display: inline-block;
width: 100%;
> option:not(:first-child) {
color: black;
}
2018-12-11 12:42:53 +00:00
}
2020-06-18 18:02:54 +00:00
solid-form-label-text {
2018-12-11 12:42:53 +00:00
display: flex;
flex-direction: column;
}
2020-06-18 18:02:54 +00:00
solid-form-placeholder-dropdown[name="skills"] {
grid-column-end: 3;
grid-column-start: 1;
}
2018-12-11 12:42:53 +00:00
}
2018-12-14 16:16:38 +00:00
.job-board, #members-list {
2020-06-18 18:02:54 +00:00
solid-form[naked] {
@extend %filters;
}
2020-05-11 18:20:13 +00:00
}*/