I designed a button with a chevron shape similar to the one shown in this Image (Button) link. I have written the code as seen below, but I am facing difficulty creating the blue component on the left side and applying border-radius
and box-shadow
properties to match the image accurately. Can someone assist me in solving this issue?
body{
background-color:#cacaca;
}
.button{
margin-top:40px;
margin-left:50px;
}
.button-shape{
background-color:#fff;
outline:none;
text-decoration:none;
color:#16215C;
padding:13px 45px;
clip-path: polygon(90% 0, 100% 75%, 95% 100%, 3% 100%, 10% 70%, 0 0);
border-radius:0 0 10px 0;
box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}
.button-shape:hover{
background-color:#16215C;
color:#fff;
}
<div class="button">
<a href="#" class="button-shape">Read More</a>
</div>