Hover Glowing Animated Button #144
CSS Hover glowing animated button
Adding these style CSS buttons to your website is easier than you think. Simply copy and paste the CSS code provided with each button design into your stylesheet
Preview Button Style
You can view the default style of buttons, the disabled state mode style of buttons, and the full-width block style of the button here. Some buttons style may not display in full width format
Button Source Code HTML and CSS
Click the button below to download the source code or edit it live.
To copy this click on the icon at the top right of the code box
.btn-144 {
--glow_color: #12aeea;
border-radius: 5px;
color: #12aeea;
border-style: solid;
background-color: transparent;
border: solid 1px #12aeea;
padding: 13px 15px;
transition: 0.2s ease;
text-transform: uppercase;
border-width: 2px;
font-weight: 500;
font-size: 15px;
letter-spacing: 1px;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
text-decoration: none;
user-select: none;
display: inline-flex;
}
.btn-144:hover {
color: #fff;
background-color: var(--glow_color);
border-color: var(--glow_color);
text-shadow: 0 0 50px white, 0 0 20px white, 0 0 15px white;
box-shadow: 0 0 50px var(--glow_color), 0 0 30px var(--glow_color), 0 0 60px var(--glow_color), 0 0 120px var(--glow_color);
letter-spacing: 1.5px;
font-size: 17px;
}
.btn-144:active {
font-size: 16px;
}
/*** disabled style ***/
.btn-144:disabled {
pointer-events: none;
opacity: .65;
color: #7e7e7e;
background: #dcdcdc;
text-shadow: none;
box-shadow: none;
}