glow button effect - CSS Snipplr Social Repository

PHOTO EMBED

Tue Jan 25 2022 08:17:25 GMT+0000 (Coordinated Universal Time)

Saved by @developerchef

@-webkit-keyframes glowPulse {
  from { background-color: #749a02; -webkit-box-shadow: 0 0 10px #b6b6b6; }
  50% { background-color: #91bd09; -webkit-box-shadow: 0 0 20px #fff; }
  to { background-color: #749a02; -webkit-box-shadow: 0 0 10px #b6b6b6; }
}
 
.pulse {
  -webkit-animation-name: glowPulse;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
}
content_copyCOPY

https://snipplr.com/view/145553/glow-button-effect