Created
July 20, 2012 15:21
-
-
Save jico/3151303 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" class="btn"><i class="glyph-settings glyph-white"></i> Settings</a> | |
<a href="#" class="btn btn-info btn-large"> | |
Next | |
<i class="glyph-circle_arrow_right glyph-white"></i> | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" class="btn btn-mini">Tap that</a> | |
<a href="#" class="btn btn-small">Tap that</a> | |
<a href="#" class="btn">Tap that</a> | |
<a href="#" class="btn btn-large">Tap that</a> | |
<a href="#" class="btn btn-xlarge">Tap that</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" class="btn">Tap that</a> | |
<button class="btn btn-generic">Tap that</button> | |
<input type="submit" class="btn btn-warning"> | |
<span class="btn btn-success">Tap that</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<fieldset class="actions"> | |
<input type="submit" value="Save changes" class="btn"> | |
<button class="btn btn-generic">Cancel</button> | |
</fieldset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
<fieldset> | |
<legend>Sample text inputs</legend> | |
<label>Name</label> | |
<input type="text" /> | |
<label>About</label> | |
<textarea></textarea> | |
</fieldset> | |
<fieldset> | |
<legend>Sample checkboxes and radios</legend> | |
<label> | |
<input type="checkbox"> | |
I agree to give you all my money | |
</label> | |
<hr class="space"> | |
<label>Which do you prefer?</label> | |
<label> | |
<input type="radio" name="group1"> | |
Left | |
</label> | |
<label> | |
<input type="radio" name="group1"> | |
Right | |
</label> | |
<label> | |
<input type="radio" name="group1"> | |
Neither | |
</label> | |
</fieldset> | |
<fieldset> | |
<legend>Sample select</legend> | |
<label>State</label> | |
<select> | |
<option>New Jersey</option> | |
<option>New York</option> | |
<option>Pennsylvania</option> | |
</select> | |
</fieldset> | |
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="span6"> | |
<div class="row"> | |
<div class="span3"> | |
... | |
</div> | |
<div class="span3"> | |
... | |
</div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
<div class="span4">...</div> | |
<div class="span4">...</div> | |
<div class="span4">...</div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="text" class="input-mini"> | |
<input type="text" class="input-small"> | |
<input type="text" class="input-medium"> | |
<input type="text" class="input-large"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment