css hover link style : demo 229

CSS

(Fonts required: Itim.)
                    .link{
                        color: #4b6584; 
                        font-family: 'Itim', cursive;
                        font-size: 24px;
                        line-height: 20px;
                        text-transform: capitalize;
                        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
                        display: inline-block;
                        position: relative;
                        z-index: 1;
                        transition: all 0.3s ease 0s;
                    }
                    .link:focus,
                    .link:hover{
                        color: #eb3b5a;
                    }
                    .link:after{
                        content: "";
                        width: 100%;
                        height: 100%;
                        border: 2px solid #4b6584;
                        opacity: 0;
                        transform: translateX(-50%);
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transition: opacity 0.5s ease 0s,width 0.2s ease 0s, height 0.2s ease 0.1s, border-top-width 0.1s ease 0.2s, bottom 0.2s ease 0s;
                    }
                    .link:hover:after{
                        width: 60%;
                        height: 0;
                        border-width: 0 2px 2px;
                        border-color: #eb3b5a;
                        opacity: 1;
                        bottom: -3px;
                        transition: opacity 0.5s ease 0s,width 0.2s ease 0.2s, height 0.2s ease 0.1s, border-top-width 0.1s ease 0s, bottom 0.2s ease 0.2s;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms