buttons style : demo 213

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)

CSS

(Fonts required: Faustina.)
                    .btn{
                        color: #555;
                        font-family: 'Faustina', serif;
                        font-size: 18px;
                        font-weight: 600;
                        line-height: 22px;
                        font-weight: 700;
                        letter-spacing: 1px;
                        text-transform: uppercase;
                        padding: 8px 15px 9px;
                        border-radius: 0;
                        border: 2px dashed #555;
                        position: relative;
                        z-index: 1;
                        transition: all 0.4s ease-in-out 0s;
                    }
                    .btn:hover{
                        color: #fff;
                        border-color: #ca52f8;
                        border-style: solid;
                    }
                    .btn:before{
                        content: "";
                        background: #ca52f8;
                        position: absolute;
                        inset: 0;
                        --progress: 100%;
                        clip-path: polygon(100% 0, var(--progress) var(--progress), 0 100%, 100% 100%);
                        z-index: -1;
                        transition: clip-path 0.2s;
                    }
                    .btn:hover:before{ --progress: 0%; }
                    @media only screen and (max-width: 767px){
                        .btn{ margin-bottom: 30px; }
                    }
                    
License Terms