<style type="text/css">
@-webkit-keyframes greenPulse {
from { background-color: #749a02; -webkit-box-shadow: 0 0 9px #333; }
50% { background-color: #91bd09; -webkit-box-shadow: 0 0 18px #91bd09; }
to { background-color: #749a02; -webkit-box-shadow: 0 0 9px #333; }
}
button {
-webkit-animation-name: greenPulse;
-webkit-animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
}
</style>