I am trying to recreate a website template I found on Behance. While I found a great solution and learned something new with filter: dropshadow(); I would really like to just make the drop-shadow on my png rounded. I tried border-radius changes but to no attest maybe blur() but that blurs the image, and I hoped you could do something like drop-shadow(blur()); which would be cheeky.
Here is the codepen an image for clarity below and the code. Thanks.
.weapon-1{
background: url(../pictor/pistols/360fx360f.png) center center no-repeat;
background-size: contain;
width: 100px;
height: 100px;
-moz-filter: drop-shadow(0 0 10px #B3135D);
-webkit-filter: drop-shadow(0 0 10px #B3135D);
filter: drop-shadow(0 0 10px #B3135D);
}
