buttons style : demo 205

HTML

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

CSS

(Fonts required: Josefin Slab.)
                    .btn{
                        color: #4b6584;
                        font-family: 'Josefin Slab', serif;
                        font-size: 20px;
                        font-weight: 700;
                        text-transform: uppercase;
                        padding: 8px 15px 4px;
                        border-radius: 0;
                        border: 2px solid #4b6584;
                        overflow: hidden;
                        position: relative;
                        z-index: 1;
                        transition: all 0.3s ease;
                    }
                    .btn:focus,
                    .btn:hover{
                        color: #fff;
                        border-color: #fa8231;
                        box-shadow: 0 0 25px -10px #4b6584;
                    }
                    .btn:before{
                        content: "";
                        background: #fa8231;
                        width: 100%;
                        height: 100%;
                        opacity: 0;
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: -1;
                        transition: all 0.3s ease 0s;
                    }
                    .btn:hover:before{
                        opacity: 1;
                        transform: scale(1) rotate(180deg);
                        box-shadow: -4px -4px 6px 0 rgba(255,255,255,.5) inset;
                    }
                    @media only screen and (max-width: 767px){
                        .btn{ margin-bottom: 30px; }
                    }
                    
License Terms