css hover link style : demo 161

CSS

(Fonts required: Mochiy Pop P One.)
                    .link{
                        color: #888;
                        font-family: 'Mochiy Pop P One', sans-serif;
                        font-size: 20px;
                        line-height: 20px;
                        letter-spacing: 0.5px;
                        display: inline-block;
                        overflow: hidden;
                        position: relative;
                        transition: all 0.4s ease 0s;
                    }   
                    .link:hover,
                    .link:focus{
                        color: #0d3f5b;
                    }
                    .link:before,
                    .link:after{
                        content: "";
                        background: repeating-linear-gradient(60deg ,#0d3f5b 0px,#0d3f5b 10px,transparent 10px,transparent 20px);
                        width: 100%;
                        height: 0;
                        position: absolute;
                        right: 0;
                        bottom: 0;
                        transition: all 0.4s ease-in-out;
                    }
                    .link:after{
                        background: repeating-linear-gradient(60deg ,transparent 0px,transparent 10px,#0d3f5b 10px,#0d3f5b 20px);
                        bottom: auto;
                        top: 0;
                    }
                    .link:hover:before, 
                    .link:hover:after{ 
                        opacity: 0;
                        height: 100%; 
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms