Хочу сделать вот такую штуку, надеюсь вы сможете мне помочь)
В картинке то что мне нужно сделать, предыдущий код к примеру)
К примеру
HTML
Вот как примерно выглядит html код
CSS
.filter-title {
font-size: 38px;
color: #d70506;
}
.filter-link {
font-size: 30px;
color: #d70506;
}
.filter hr {
background: #000;
width: 65%;
margin-left: 8%;
}
.filtres hr {
margin-left: 1%;
}
.filtres .filter-list {
overflow-y: scroll;
overflow-x: hidden;
max-height: 250px;
}
.filter-list {
margin-top: 10%;
}
.row .filter-checkbox {
opacity: 0;
position: absolute;
width: 40%;
height: 1.5%;
}
.filter-element {
font-size: 22px;
cursor: default;
font-weight: normal;
margin-left: 8%;
}
label {
margin-bottom: .1em;
}
.filter-element:before {
content: " ";
color: #000;
display: inline-block;
top: 1px;
margin-right: 12px;
font-size: 17px;
position: relative;
width: 17px;
line-height: 1.1;
height: 17px;
background: #FFF;
border: 1px solid #818181;
border-radius: 3px;
}
.filter-checkbox:checked + .filter-element:before {
content: "✔";
}
.filter-checkbox:disabled + .filter-element:before {
background: #fff;
color: #000;
}