подскажите как сделать как на картинке, ниже так как пока смог сделать
вот код для правки решение%line_bg{
position: relative;
height: 100px;
background-repeat: no-repeat
}
.
.yellow_line {
float: left;
width: 65%;
@extend %line_bg;
background-color: $yellow;
&:before {
content: '';
position: absolute;
width: 0;
height: 0;
right: 0;
bottom: 0;
border-bottom: 100px solid #FFF;
border-left: 100px solid transparent;
}
}
.blue_line {
float: right;
width: 35%;
@extend %line_bg;
background-color: $blue;
&:after {
content: '';
position: absolute;
width: 0;
height: 0;
left: 0;
bottom: 0;
border-top: 100px solid #FFF;
border-right: 100px solid transparent;
}
}
}
<div class="line_wrap">
<div class="yellow_line">
</div>
<div class="blue_line">
</div>
</div>