]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Hollow button docs
authorJoe Workman <joe@workmanmail.com>
Thu, 4 May 2017 01:08:43 +0000 (18:08 -0700)
committerJoe Workman <joe@workmanmail.com>
Thu, 4 May 2017 01:08:43 +0000 (18:08 -0700)
docs/pages/button.md

index 2a396abdfa8c34d68621c7ba24656c358655b240..ce6d670ab9424c81d91b1dc45a9e09d47d60eff9 100644 (file)
@@ -81,3 +81,18 @@ Creating buttons with a radius or rounded edges (like a pill) can be achieved by
 <button href="#" class="rounded">Round</button>
 
 ```
+
+---
+
+## Hollow Buttons
+
+Creating hollow buttons is as simple as adding the `.hollow` class to a button. You can combine this class with all of the other button classes in order to mix and match styles.
+
+
+```inky_example
+<button href="#" class="hollow">Hollow Button</button>
+<button href="#" class="hollow secondary radius">Secondary Button</button>
+<button href="#" class="hollow success round">Success Button</button>
+<button href="#" class="hollow warning tiny">Warning Button</button>
+<button href="#" class="hollow alert expanded">Alert Button</button>
+```