The CSS output of the ultimate gradient generator

The ultimate gradient generator created eight different properties. Wow! The first is just the background color for older browsers that don't support the gradient's syntax:

background: #33d3ff; /* Old browsers */

We actually want to change that to #0072AE because that's our official branded color for this site. So add that and delete the background-color: #0072AE property mentioned earlier in the declaration:

.call-to-action {  border: 2px solid #fff;  color: #fff;  padding: 25px 0;  display: block;  text-align: center;  border-radius: 10px;  font-size: 22px;  font-weight: bold;  -webkit-transition: all .25s ease-in-out;  transition: all .25s ease-in-out; /* Permalink - use to edit and share this gradient: ...

Get Mastering CSS now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.