css hover link style : demo 252

CSS

(Fonts required: Roboto Condensed.)
                        .link{
                            color: #fff;
                            font-family: 'Roboto Condensed', sans-serif;
                            font-size: 24px;
                            font-weight: 700;
                            text-transform: uppercase;
                            padding: 7px 15px;
                            display: inline-block;
                            position: relative;
                            transition: all 0.3s ease 0s;
                        }
                        .link:hover{ color: #962104; }
                        .link:before{
                            content: "";
                            background: #fff;
                            width: 6px;
                            height: 6px;
                            border-radius: 50%;
                            opacity: 0;
                            transform: translateX(-50%);
                            position: absolute;
                            bottom: 0;
                            left: 50%;
                            box-shadow: 0 0 0 0 #fff, 0 0 0 0 #fff, 0 0 0 0 #fff;
                            transition: opacity 0.2s ease 0s,box-shadow 0.3s ease 0s;
                        }
                        .link:hover:before{
                            box-shadow: 10px 0 0 0 #fff, -10px 0 0 0 #fff;
                            opacity: 1;
                        }
                        @media only screen and (max-width: 767px){
                            .link{ margin-bottom: 20px; }
                        }
                    
License Terms