css hover link style : demo 244

CSS

(Fonts required: Almarai.)
                        .link{
                            color: #333;
                            font-family: 'Almarai', sans-serif;
                            font-size: 22px;
                            font-weight: 600;
                            line-height: 21px;
                            text-transform: capitalize;
                            padding: 6px 6px;
                            margin: 0 15px;
                            display: inline-block;
                            position: relative;
                            z-index: 1;
                            transition: all 0.3s ease 0s;
                        }
                        .link:focus,
                        .link:hover{
                            color: #8B4513;
                        }
                        .link:before,
                        .link:after{
                            content: '';
                            width: 100%;
                            height: 100%;
                            border: 1px solid #333;
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: all 0.3s;
                        }
                        .link:after{
                            opacity: 0;
                            border: 1px solid #8B4513;
                            transform: translateY(-7px) translateX(6px);
                        }
                        .link:hover:before{
                            opacity: 0;
                            transform: translateY(5px) translateX(-5px);
                        }
                        .link:hover:after{
                            opacity: 1;
                            transform: translateY(0px) translateX(0px);
                        }
                        @media only screen and (max-width: 767px){
                            .link{ margin-bottom: 30px; }
                        }
                    
License Terms