JSFiddle - React, Tailwind, and code Playground

by Sampath

HTML

<div class="background">
    <div class="line1"></div>
    <div class="line2"></div>
</div>

CSS

.line1 {
    width: 112px;
    height: 47px;
    border-bottom: 1px solid red;
    -webkit-transform:
        translateY(-20px)
        translateX(5px)
        rotate(27deg); 
    position: absolute;
    top: 20px;
}
.line2 {
    width: 112px;
    height: 47px;
    border-bottom: 1px solid green;
    -webkit-transform:
        translateY(20px)
        translateX(5px)
        rotate(-26deg);
    position: absolute;
    top: -33px;
    left: 63px;
}