Skip to content

Instantly share code, notes, and snippets.

@bugsysop
Created July 9, 2012 09:55
Show Gist options
  • Select an option

  • Save bugsysop/3075498 to your computer and use it in GitHub Desktop.

Select an option

Save bugsysop/3075498 to your computer and use it in GitHub Desktop.
Twitter Bootstrap - All Buttons
<!--Standard gray button with gradient-->
<button class="btn" type="submit">
Button
</button>
<!--Provides extra visual weight and identifies the primary action in a set of buttons-->
<button class="btn btn-primary" type="submit">
Button
</button>
<!--Used as an alternative to the default styles-->
<button class="btn btn-info" type="submit">
Button
</button>
<!--Indicates a successful or positive action-->
<button class="btn btn-success" type="submit">
Button
</button>
<!--Indicates caution should be taken with this action-->
<button class="btn btn-warning" type="submit">
Button
</button>
<!--Indicates a dangerous or potentially negative action-->
<button class="btn btn-danger" type="submit">
Button
</button>
<!--Alternate dark gray button, not tied to a semantic action or use-->
<button class="btn btn-inverse" type="submit">
Button
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment