Created
September 15, 2022 06:46
-
-
Save cpamungkas/a5cf52005d7451c025ba4226506133c6 to your computer and use it in GitHub Desktop.
LYmxVLw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button>Glowing</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CSS glowing button