Press ESC to close

Or check our Popular Categories...
1 Min Read
0 208

CSS Background – Pulsating background using keyframes. body { animation: pulsate_background 8s infinite; } @keyframes pulsate_background { 0% { background-color: #b7b937; } 25% { background-color: #3a5a27; } 50% { background-color: #42a5b3; } 75% { background-color: #682d4b; } 100% { background-color:…

Continue Reading
1 Min Read
0 219

body { margin-top:0px; } .line { position: absolute; left: 0; height: 10%; animation-fill-mode: forwards !important; } #line_1{ background-color: #4158D0; background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%); animation: draw 4s 0s linear; } #line_2{ top:10%; background-color: #0093E9; background-image: linear-gradient(160deg, #0093E9…

Continue Reading