.button-secondary class

Secondary (non-default) buttons.

The following illustrations show: 

  1. The button-secondary style before applying CSS changes.

  2. The button-secondary style after the background-color property has been changed to purple and the color property has been added.

Default CSSModified CSS


button.secondary {
background-color: #fff;
border: 1px solid #5F80C5;
color: #5F80C5;
}


button.secondary {
background-color: purple;
border: 1px solid #5F80C5;
color: yellow;
}