buttons style : demo 244

HTML

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

CSS

(Fonts required: Acme.)
                        .btn{
                            color: #ad5389;
                            font-family: "Acme", sans-serif;
                            font-size: 18px;
                            font-weight: 700;
                            text-transform: uppercase;
                            letter-spacing: 1.5px;
                            margin: 0 7px;
                            padding: 8px 15px;
                            border: 2px solid #ad5389;
                            border-radius: 0;
                            position: relative;
                            z-index: 1;
                            transition: all 0.3s ease-in-out;
                        }
                        .btn:hover{ 
                            color: #3c1053;
                            border: 2px solid #3c1053;
                        }
                        .btn:before,
                        .btn:after{
                            content: "";
                            width: 16px;
                            height: 16px;
                            border-style: solid;
                            border-width: 2px 0 0 2px;
                            border-color: #ad5389;
                            position: absolute;
                            top: -6px;
                            left: -6px;
                            transition: all 0.3s ease-in-out;
                        }
                        .btn:after{
                            border-width: 0 2px 2px 0;
                            top: auto;
                            bottom: -6px;
                            left: auto;
                            right: -6px;
                        }
                        .btn:hover:before,
                        .btn:hover:after{ 
                            width: calc(100% + 12px);
                            height: calc(100% + 12px);
                            border-color: #3c1053;
                            transform: rotateY(180deg);
                        }
                        @media only screen and (max-width: 767px){
                            .btn{ margin-bottom: 30px; }
                        }
                    
License Terms