Skip to content

Instantly share code, notes, and snippets.

@cpamungkas
Created September 15, 2022 06:46
Show Gist options
  • Save cpamungkas/a5cf52005d7451c025ba4226506133c6 to your computer and use it in GitHub Desktop.
Save cpamungkas/a5cf52005d7451c025ba4226506133c6 to your computer and use it in GitHub Desktop.
LYmxVLw
<button>Glowing</button>
body{
background:#000;
display:flex;
justify-content:center;
align-items:center;
}
button{
background: transparent;
box-sizing: border-box;
border-radius: 0.6rem;
align-self: center;
font-size: 17px;
font-weight: 400;
margin: 20px;
padding: 20px 40px;
text-align: center;
color: aliceblue;
font-family: Pangolin;
font-weight: bold;
cursor: pointer;
border: 2px solid aqua;
}
button:hover{
color: aqua;
box-shadow: 3px 3px 20px #03e9f4,
3px 2px 20px #03e9f4;
}
@cpamungkas
Copy link
Author

CSS glowing button

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment