.style-border-1{
width:100px;
height:100px;
border-radius: 5px 20px 5px;
background: #40E0D0;
background: -webkit-linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
}
.style-border-2{
width:100px;
height:100px;
border-radius: 10px/30px;
background: #dd3e54;
background: -webkit-linear-gradient(to right, #6be585, #dd3e54);
background: linear-gradient(to right, #6be585, #dd3e54);
}
.style-border-3{
width:100px;
height:100px;
border-radius: 50%;
background: #b92b27;
background: -webkit-linear-gradient(to right, #1565C0, #b92b27);
background: linear-gradient(to right, #1565C0, #b92b27);
}
.style-border-4{
width:100px;
height:100px;
border-radius: 30px/10px;
background: #c94b4b;
background: -webkit-linear-gradient(to right, #4b134f, #c94b4b);
background: linear-gradient(to right, #4b134f, #c94b4b);
}