From b0f68c1ada70de27ac2df71ecf4d9e3521acadf7 Mon Sep 17 00:00:00 2001 From: wakgill <76528604+wakgill@users.noreply.github.com> Date: Fri, 1 Jan 2021 12:35:58 -0600 Subject: [PATCH] Delete buttons.md --- docs/ui-components/buttons.md | 97 ----------------------------------- 1 file changed, 97 deletions(-) delete mode 100644 docs/ui-components/buttons.md diff --git a/docs/ui-components/buttons.md b/docs/ui-components/buttons.md deleted file mode 100644 index 3297f29..0000000 --- a/docs/ui-components/buttons.md +++ /dev/null @@ -1,97 +0,0 @@ ---- -layout: default -title: Buttons -parent: UI Components -nav_order: 2 ---- - -# Buttons -{: .no_toc } - -## Table of contents -{: .no_toc .text-delta } - -1. TOC -{:toc} - ---- - -## Basic button styles - -### Links that look like buttons - -
-[Link button](http://example.com/){: .btn } - -[Link button](http://example.com/){: .btn .btn-purple } -[Link button](http://example.com/){: .btn .btn-blue } -[Link button](http://example.com/){: .btn .btn-green } - -[Link button](http://example.com/){: .btn .btn-outline } -
-```markdown -[Link button](http://example.com/){: .btn } - -[Link button](http://example.com/){: .btn .btn-purple } -[Link button](http://example.com/){: .btn .btn-blue } -[Link button](http://example.com/){: .btn .btn-green } - -[Link button](http://example.com/){: .btn .btn-outline } -``` - -### Button element - -GitHub Flavored Markdown does not support the `button` element, so you'll have to use inline HTML for this: - -
- -
-```html - -``` - ---- - -## Using utilities with buttons - -### Button size - -Wrap the button in a container that uses the [font-size utility classes]({{ site.baseurl }}{% link docs/utilities/typography.md %}) to scale buttons: - -
- -[Big ass button](http://example.com/){: .btn } - - - -[Tiny ass button](http://example.com/){: .btn } - -
-```markdown - -[Link button](http://example.com/){: .btn } - - - -[Tiny ass button](http://example.com/){: .btn } - -``` - -### Spacing between buttons - -Use the [margin utility classes]({{ site.baseurl }}{% link docs/utilities/layout.md %}#spacing) to add spacing between two buttons in the same block. - -
-[Button with space](http://example.com/){: .btn .btn-purple .mr-2 } -[Button ](http://example.com/){: .btn .btn-blue .mr-2 } - -[Button with more space](http://example.com/){: .btn .btn-green .mr-4 } -[Button ](http://example.com/){: .btn .btn-blue } -
-```markdown -[Button with space](http://example.com/){: .btn .btn-purple .mr-2 } -[Button ](http://example.com/){: .btn .btn-blue } - -[Button with more space](http://example.com/){: .btn .btn-green .mr-4 } -[Button ](http://example.com/){: .btn .btn-blue } -```