[Solved] CSS Animation Line Grow on Hover [closed]

See below. Hope this helps .read_more { font-family: “Gotham SSm A”, “Gotham SSm B”; font-size: 20px; color: #002c77; letter-spacing: 0; text-align: center; line-height: 28px; font-weight: bold; text-transform: uppercase; } div { position: relative; display: inline-block; } div:after { content: “”; height: 3px; width: 20px; background-color: red; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); } … Read more

[Solved] Change Background Color & Font Color Automatically Via CSS [closed]

What you looking for is @keyframe. Here is simmilar problemCSS background color keyframes animation @keyframes animation { 0% {background-color:red;} 50.0% {background-color:blue;} 100.0% {background-color:red;} } http://jsfiddle.net/yjsh9613/ I think keyframes works pretty well for this one, here is example: https://codepen.io/jerrykck/pen/eYZERPe 1 solved Change Background Color & Font Color Automatically Via CSS [closed]