Buttons

Basic Buttons

Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.

Outline Buttons

In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.

Sizing Buttons

Use Font Awesome Icons (included with this theme package) along with the sizing buttons as shown in the examples below!

.btn only
with .btn-sm
with .btn-lg
Brand Buttons

Google and Facebook buttons are available featuring each company's respective brand color. They are used on the user login and registration pages.

You can create more custom buttons by adding a new color variable in the _variables.scss file and then using the Bootstrap button variant mixin to create a new style, as demonstrated in the _buttons.scss file.

.btn-google .btn-facebook
Split Buttons with Icon

Works with any button colors, just use the .btn-icon-split class and the markup in the examples below. The examples below also use the .text-white-50 helper class on the icons for additional styling, but it is not required.

Split Button Primary
Split Button Success
Split Button Info
Split Button Warning
Split Button Danger
Split Button Secondary
Split Button Primary

Also works with small and large button classes!

Split Button Small
Split Button Large
Disabled Buttons

Make buttons look inactive by adding the disabled boolean attribute to any <button> element.

For more documentations you can visit bootstrap buttons documentations.