css hover link style : demo 178

CSS

(Fonts required: Fredoka.)
                    .link{
                        color: #9b5500;
                        font-family: 'Fredoka', sans-serif;
                        font-size: 25px;
                        font-weight: 700;
                        line-height: 22px;
                        text-transform: capitalize;
                        margin: 0 5px;
                        display: inline-block;
                        position: relative;
                        z-index: 1;
                        transition: all 0.3s ease-out;
                    }
                    .link:hover,
                    .link:focus{
                        color: #9b5500;
                    }
                    .link:before,
                    .link:after{
                        content: "";
                        width: 10px;
                        height: 100%;
                        border: 3px solid #9b5500;
                        border-top: none;
                        border-bottom: none;
                        opacity: 0;
                        position: absolute;
                        left: 0;
                        top: 0;
                        transition: all 0.3s ease-out;
                        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
                    }
                    .link:after{
                        transform: rotateY(180deg);
                        left: auto;
                        right: 0;
                    }
                    .link:hover:before{
                        opacity: 1;
                        left: -12px;
                    }
                    .link:hover:after{
                        opacity: 1;
                        right: -12px;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms