Flat buttons built from css3.
#Demo Demo
Move font-awesome.min.css
and buttons.min.css
to your css folder and dropdown.js
to your js folder. Leave the fonts
folder in the root of your website.
Include buttons.min.css
in the head of your html page
<link rel="stylesheet" href="css/buttons.min.css">
and dropdown.js
in the footer after jquery
<script src="js/dropdown.js"></script>
In order to use the default button add the classes btn
and default
to any appropriate element
<a href="" class="btn default">Button</a>
<button class="btn default">Button</button>
<input type="submit" class="btn default" value="Submit">
The buttons framework support 20 colors listed at http://flatuicolors.com/
To use the colored buttons simply add the color name to class
<a href="#" class="btn turcuoise rd">Turcuoise</a>
<a href="" class="btn emerald">Emerald</a>
<a href="#" class="btn peter_river">Peter River</a>
<a href="#" class="btn amethyst">Amethyst</a>
<a href="#" class="btn wet_asphalt">Wet Asphalt</a>
<a href="#" class="btn green_sea">Green Sea</a>
<a href="#" class="btn nephritis">Nephritis</a>
<a href="#" class="btn belize_hole">Belize Hole</a>
<a href="#" class="btn wisteria">Wisteria</a>
<a href="#" class="btn midnight_blue">Midnight Blue</a>
<a href="#" class="btn sunflower">Sunflower</a>
<a href="#" class="btn carrot">Carrot</a>
<a href="#" class="btn alizarin">Alizarin</a>
<a href="#" class="btn clouds">Clouds</a>
<a href="#" class="btn concrete">Concrete</a>
<a href="#" class="btn orange">Orange</a>
<a href="#" class="btn pumkin">Pumkin</a>
<a href="#" class="btn pomegranate">Pomegranate</a>
<a href="#" class="btn silver">Silver</a>
<a href="#" class="btn asbestos">Asbesto</a>
You can use the the classes lg
, sm
, xs
for large,small and extra small respectively
<a href="" class="btn default lg">Button</a>
<a href="" class="btn default sm">Button</a>
<a href="" class="btn default xs">Button</a>
For round buttons simply add the class rd
to the button element
<a href="" class="btn default rd">Button</a>
To use the 3D buttons simply add -3d
to the button's color class
<a href="#" class="btn turcuoise-3d">Turcuoise</a>
<div class="dropdown">
<button data-toggle="dropdown" class="btn default">Dropdown trigger <b class="caret"></b></button>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
...
</ul>
</div>
The buttons framework uses the Font Awesome. To add icons to the button add <i class="fa fa-icon-name"></i>
Check out a full list of available icons and their class at http://fontawesome.io/icons/
<button class="btn asbestos"><i class="fa fa-icon-name"></i>Button</button>
If you are adding the icon before the button text add class left
to the i element
<button class="btn asbestos"><i class="fa fa-icon-name left"></i>Button</button>
If you are adding the icon after the button text add class right
to the i element
<button class="btn asbestos">Button<i class="fa fa-icon-name right"></i></button>