4 Material Design: <a href="http://www.google.com/design/spec/components/buttons.html">Buttons</a>
6 `paper-button` is a button. When the user touches the button, a ripple effect emanates
7 from the point of contact. It may be flat or raised. A raised button is styled with a
12 <paper-button>flat button</paper-button>
13 <paper-button raised>raised button</paper-button>
14 <paper-button noink>No ripple effect</paper-button>
16 You may use custom DOM in the button body to create a variety of buttons. For example, to
17 create a button with an icon and some text:
21 <iron-icon icon="favorite"></iron-icon>
27 Style the button with CSS as you would a normal DOM element.
30 /* make #my-button green with yellow text */
36 By default, the ripple is the same color as the foreground at 25% opacity. You may
37 customize the color using this selector:
40 /* make #my-button use a blue ripple instead of foreground color */
41 #my-button::shadow paper-ripple {
45 The opacity of the ripple is not customizable via CSS.