Buttons
Besides normal Foundation buttons, you can also specify green and pink buttons.
Primary Buttons:
Green button
Pink button
Secondary Buttons:
Button with border
Green hollow button
White/green hollow button
Call to Actions:
You can add an arrow to your button by adding the class .cta
Call to action
Form Submit Buttons
For CTAs on form submit buttons, use <button></button> elements rather than default <input type="submit">
Using Rails form_for
= f.button "button text", id: "some_id", class: "button cta"
Using Simple_Form
= f.button :button, "button text", id: "if you want an id", class: "button cta"
This documentation generated using Hologram