Trying to make soft edged triangle animation, but couldn't make the triangle edges perfectly bended softly.
As a output I am trying to make this. triangly animation
.triangle{
position:relative;
width:100px;
height:60px;
border-bottom:1px solid black;
border-radius:12px 0 0;
}
.shape{
border-radius:10px 0 0;
border-left: 1px solid black;
border-top: 1px solid black;
width:70px; height:70px;
-webkit-transform:rotate(45deg);
position:absolute;
left:15px;
top:23px;
}
<div class="triangle">
<div class="shape"></div>
</div>