css hover link style : demo 239

CSS

(Fonts required: Young Serif.)
                    .link{
                            color: #000DFF;
                            font-family: 'Young Serif', 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: #000DFF; }

                        .link:before,
                        .link:after{
                            content: "";
                            background: #6B73FF;
                            width: 100%;
                            height: 3px;
                            transform: translateX(-50%) scale(0);
                            position: absolute;
                            bottom: -8px;
                            left: 50%;
                            transition: all .3s ease-in-out;
                        }

                        .link:after{
                            background: #000dff66;
                            width: 12px;
                            height: 12px;
                            border-radius: 50px;
                            opacity: 0;
                            transform: translateX(-50%);
                            bottom: -12px;
                        }

                        .link:hover:before{  transform: translateX(-50%) scale(1); }
                        .link:hover:after{ opacity: 1; }

                        @media only screen and (max-width: 767px){
                            .link{ margin-bottom: 30px; }
                        }
                    
License Terms