buttons style : demo 13

HTML

CSS

                        .btn{
                            padding-right: 80px;
                            padding-left: 30px;
                            border-radius: 0;
                            color:#fff;
                            text-transform: uppercase;
                            background: #580141;
                            overflow: hidden;
                            position: relative;
                            transition: all 0.3s ease 0s;
                        }
                        .btn:before{
                            content: "";
                            width: 33%;
                            height: 200%;
                            position: absolute;
                            top: 0;
                            right: 0;
                            margin: -5px 0 0 -5px;
                            transform: rotate(-20deg);
                            transform-origin: 0 0 0;
                            transition: all 0.3s ease 0s;
                            z-index: 1;
                        }
                        .btn:after{
                            content: "\f061";
                            font-family: "Font Awesome 5 Free"; font-weight: 900;
                            position: absolute;
                            top:25%;
                            right: 13%;
                            display: block;
                        }
                        .btn:hover:before{
                            width: 40%;
                        }
                        .btn:hover{
                            color:#fff;
                        }
                        .btn.purple:before,
                        .btn.green:before,
                        .btn.orange:before,
                        .btn.blue:before{
                            background: rgba(255, 255, 255, 0.1);
                        }
                        .btn.purple:hover{
                            background: #55023F ;
                        }
                        .btn.green{
                            background: #396b1c;
                        }
                        .btn.green:hover{
                            background: #355920;
                        }
                        .btn.orange{
                            background: #e67e22;
                        }
                        .btn.orange:hover{
                            background: #cd7223;
                        }
                        .btn.blue{
                            background: #0e83cd;
                        }
                        .btn.blue:hover{
                            background: #0c68a2;
                        }
                        @media only screen and (max-width: 990px) {
                            .btn{
                                padding-right: 50px;
                                padding-left: 10px;
                            }
                            .btn:before {
                                width: 38%;
                            }
                            .btn:hover:before {
                                width: 43%;
                            }
                        }
                        @media only screen and (max-width: 767px) {
                            .btn{
                                padding-right: 80px;
                                padding-left: 30px;
                                margin-bottom: 15px;
                            }
                            .btn:before {
                                width: 16%;
                            }
                            .btn:hover:before {
                                width: 25%;
                            }
                        }
                    
License Terms