Neon Glow Effect for Active Link Border

by kshep92

HTML

<a href=#>
    All Deals
    <span></span>
</a>

<hr />

CSS

body {
background: #000;
}

a {
display: inline-block;
    padding: 10px;
    margin-left: 10px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    position: relative;
    top: 20px;
    text-align: center;
}

a span {
display: block;
    width: 100%;
    height: 4px;
    background: rgba(50, 219, 255, 0.7);
    margin-top: 15px;
    -webkit-box-shadow: 0px 1px 30px #32dbff, 0px -1px 15px rgba(50, 219, 255, 0.8), 0px 0px 20px #32dbff;
}

hr {
border: 0;
    background-color: #848589;
    height: 2px;
}