css hover link style : demo 226

CSS

(Fonts required: Dosis.)
                    .link{
                        color: #e45118;
                        font-family: 'Dosis', sans-serif;
                        font-size: 24px;
                        font-weight: 600;
                        line-height: 20px;
                        text-transform: capitalize;
                        display: inline-block;
                        position: relative;
                        z-index: 1;
                        transition: 0.35s;
                    }
                    .link:focus,
                    .link:hover{
                        color: #777;
                    }
                    .link:before{
                        content: '';
                        width: 0;
                        border: 2px dashed transparent;
                        border-top: none;
                        border-left: none;
                        border-radius: 10px;
                        position: absolute;
                        top: -5px;
                        bottom: -5px;
                        right: -5px;
                        transition: 0.35s;
                        transition-delay: 0.25s;
                    }
                    .link:hover:before{
                        left: -5px;
                        width: calc(100% + 10px);
                        border-color: #e45118;
                        transition: 0.35s;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms