Icon background color of operation success screens..
The following illustrations show:
- The .success-check style before applying CSS changes.
- The .success-check style after the background-color property has been changed to blue.
Default CSS | Modified CSS | |
.success-check { display: inline-block; height: 80px; width: 80px; min-width: 80px; border-radius: 50px; background-color: #57d38f; border: 1px solid #31b06a; } | .success-check { display: inline-block; height: 80px; width: 80px; min-width: 80px; border-radius: 50px; background-color: blue; border: 1px solid #31b06a; } |