WordPress Elementor Animation gradient border responsive template

WordPress Elementor Animation gradient border responsive template
WordPress Elementor Animation gradient border responsive template

Features 
🔸Fully customizable 
🔸Responsive 
🔸Code
  
Tutorial link:

☑️Support me on Patreon



Code
<style>
.card{
     overflow: hidden !important;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .card:before{
     content: '';
     position: absolute;
     width:180px;
     height: 140%;
     background: linear-gradient(#0033cc, #05ff4c);
     animation: animate 4s linear infinite;
}
 @keyframes animate{
     0%{
         transform: rotate(0deg);
    }
     100%{
         transform: rotate(360deg);
    }
}
 </style>

Comments