Skip to content

Instantly share code, notes, and snippets.

View gnuwilliam's full-sized avatar

William Oliveira gnuwilliam

View GitHub Profile
@gnuwilliam
gnuwilliam / tables-bordered.html
Created August 11, 2013 22:10
gist for sudotrap
<!-- Bordered -->
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Github user</th>
</tr>
</thead>
@gnuwilliam
gnuwilliam / tables-hover-row.html
Created August 11, 2013 22:11
gist for sudotrap
<!-- Hover rows -->
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Github user</th>
</tr>
</thead>
@gnuwilliam
gnuwilliam / tables-condensed.html
Created August 11, 2013 22:11
gist for sudotrap
<!-- Condensed -->
<table class="table table-condensed">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Github user</th>
</tr>
</thead>
@gnuwilliam
gnuwilliam / tables-colored-cells.html
Created August 11, 2013 22:11
gist for sudotrap
<!-- Colored cells -->
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Column heading</th>
<th>Column heading</th>
<th>Column heading</th>
</tr>
</thead>
@gnuwilliam
gnuwilliam / forms-normal.html
Created August 11, 2013 22:18
gist for sudotrap
<form>
<fieldset>
<legend>Legend</legend>
<div class="form-group">
<label for="exampleInputEmail">Email</label>
<input type="text" class="form-control" id="exampleInputEmail" placeholder="Enter email">
</div>
<div class="form-group">
@gnuwilliam
gnuwilliam / forms-inline.html
Created August 11, 2013 22:18
gist for sudotrap
<form class="form-inline">
<input type="text" class="form-control" placeholder="Email">
<input type="password" class="form-control" placeholder="Password">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
@gnuwilliam
gnuwilliam / forms-horizontal.html
Created August 11, 2013 22:19
gist for sudotrap
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail" class="col-lg-2 control-label">Email</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword" class="col-lg-2 control-label">Password</label>
<div class="form-group has-warning">
<label class="control-label" for="inputWarning">Input with warning</label>
<input type="text" class="form-control" id="inputWarning">
</div>
<div class="form-group has-error">
<label class="control-label" for="inputError">Input with error</label>
<input type="text" class="form-control" id="inputError">
</div>
@gnuwilliam
gnuwilliam / forms-radius.html
Created August 12, 2013 23:03
gist for sudotrap
<form>
<fieldset>
<legend>Legend</legend>
<div class="form-group radius">
<label for="exampleInputEmail">Email</label>
<input type="text" class="form-control" id="exampleInputEmail" placeholder="Enter email">
</div>
<div class="form-group radius">
@gnuwilliam
gnuwilliam / forms-inline-radius.html
Created August 12, 2013 23:05
gist for sudotrap
<form class="form-inline">
<input type="text" class="form-control radius" placeholder="Email">
<input type="password" class="form-control radius" placeholder="Password">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>