Source: button.scss, line 1
Buttons styles from trimble css
<div>
<button class="button default">default button</button>
</div>
<br/>
<div>
<button class="button small">small button</button>
</div>
<br/>
<div>
<button class="button expanded">expanded button</button>
</div>
<br/>
<div>
<button class="button small">
<i class="icon add"></i>icon button
</button>
</div>
<br/>
<div>
<button class="button default" disabled="disabled">Disabled button</button>
</div>
<br/>
<div>
<button class="button secondary">Secondary button</button>
</div>
Source: checkbox.scss, line 1
Checkbox styles from trimble css
<div class="checkbox">
<input class="check-input" type="checkbox" id="timezones" /><label for="timezones">Display All Timezones</label>
</div>
Source: floating-label.scss, line 1
Floating label styles from trimble css
<div class="input-group">
<input class="icon user" type="text" required/>
<label class="label float">First Name</label>
</div>
Source: form.scss, line 1
Input box from trimble css
<div class="input-group">
<label>Normal input</label>
<input class="icon user" type="text" placeholder="First Name">
</div>
<div class="input-group">
<label>Input with focus</label>
<input class="icon user focus" type="text" placeholder="First Name">
</div>
<div class="input-group">
<label>Input with error</label>
<input class="icon user error" type="text" placeholder="First Name">
</div>
<div class="input-group">
<label>Input without icon</label>
<input class="" type="text" placeholder="Without icon">
</div>
Source: form.scss, line 26
Select box from trimble css
<select>
<option value="">All Users</option>
<option value="">Pod 3</option>
<option value="">Architects</option>
<option value="">Engineers</option>
<option value="">Surveyors</option>
</select>