Buttons

Comun button

The buttons are represented by the btn class.

Example
<a href='' class='btn'>Example</a>

Shadow

To add shadow to the button, include the box-shadow class.

Example
<a href='' class='btn box-shadow'>Example</a>

Center-aligned button

To center a button, add the center class. It is also essential that it is inside an object with class col and with class center-align .

<div class="row mb_0">
  <div class="col s12 center-align">
    <a class='btn center'>Example</a>
  </div>
</div>