.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 {<br/> background-color: #fff; <br/> border: 1px solid #5F80C5; <br/> color: #5F80C5; <br/>}


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