css hover link style : demo 238

CSS

(Fonts required: Varela Round.)
                        .link{
                            color: #ff6a00;
                            font-family: 'Almarai', sans-serif;
                            font-size: 22px;
                            font-weight: 500;
                            line-height: 20px;
                            text-transform: capitalize;
                            display: inline-block;
                            position: relative;
                            z-index: 1;
                            transition: all 0.5s ease 0s;
                        }
                        .link:focus,
                        .link:hover{ color: #ee0979; }
                        .link:before,
                        .link:after{
                            position: absolute;
                            transition: transform 0.3s, opacity 0.3s;
                        }
                        .link:before{ 
                            content: attr(data-hover);
                            color: #ff6a00;
                            position: absolute;
                            text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
                            transition: transform 0.3s, opacity 0.3s;
                        }
                        .link:after{
                            content: '';
                            background:#ff6a00;
                            width: 100%;
                            height: 2px;
                            opacity: 0;
                            transform: translateY(5px);
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            transition: transform 0.3s, opacity 0.3s;
                        }
                        .link:hover:before{
                            opacity: 0;
                            transform: translateY(-2px);
                        }
                        .link:hover:after{
                            opacity: 1;
                            transform: translateY(0);
                        } 
                        @media only screen and (max-width: 767px){
                            .link{ margin-bottom: 30px; }
                        }
                    
License Terms