buttons style : demo 209

HTML

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

CSS

(Fonts required: Varela Round.)
                    .btn{
                        color:#3d8361;
                        background: transparent;
                        font-family: 'Varela Round', sans-serif;
                        font-size: 18px;
                        font-weight: 700;
                        text-transform: capitalize;
                        padding: 6px 15px;
                        border-radius: 0;
                        border: 2px solid #3d8361;
                        transition: all 0.05s ease 0s;
                    }
                    .btn:focus,
                    .btn:hover{
                        color:#fff;
                        background-color: #3d8361;
                        outline: 2px solid #3d8361;
                        outline-offset: 3px;
                    }
                    @media only screen and (max-width: 767px){
                        .btn{ margin-bottom: 30px; }
                    }
                    
License Terms