-
CSS implements button hover glow animation effect |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
` { |
Beta Was this translation helpful? Give feedback.
-
CSS implements button hover glow animation effect |
Beta Was this translation helpful? Give feedback.
-
` { |
Beta Was this translation helpful? Give feedback.
`
<title>title</title><!doctype html>
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body
{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #000;
}
.container
{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
a
{
position: relative;
display: inline-block;
padding: 15px 30px;
color: #fff;
background: transparent;
border: 2px solid #42db14;
text-transform: uppercase;
font-weight: 600;
margin: 40px;
letter-spacing: 2px;
text-decoration: none;
transition: 0.5s;
transition-delay: 0s;
-webk…