Doghouse UiKit

Examples
Default styling

Link button

.button--primary
Primary button style

Link button

.button--secondary
Secondary button style

Link button

.button--tertiary
Tertiary button style

Link button

.button--transparent
Transparent style button.

Link button

Markup
 <p>
  <a href="#" class="button [modifier class]">Link button</a>
  <button class="button [modifier class]">Button tag</button>
  <input type="submit" class="button [modifier class]" value="Submit button" />
 </p>
Source: scss/objects/_button.scss, line 4
Examples
Default styling

Link button

.button--small
Small button style

Link button

.button--large
Large button style

Link button

Markup
 <p>
  <a href="#" class="button--primary [modifier class]">Link button</a>
  <button class="button--primary [modifier class]">Button tag</button>
  <input type="submit" class="button--primary [modifier class]" value="Submit button" />
 </p>
Source: scss/objects/_button.scss, line 45
Markup
 <p class="button-set--primary button-group">
  <a href="#" class="active">Button 1</a>
  <a href="#">Button 2</a>
  <a href="#">Button 3</a>
 </p>
Source: scss/objects/_button.scss, line 131

1.4 #Buttons.4-button-set Button set

Toggle full screen Open in new window Toggle example guides Toggle HTML markup

Applied to a parent wrapper, will set all child links to use the button style. Defaults to primary button.

Examples
Default styling

Link button

.button-set--primary
Primary button style

Link button

.button-set--secondary
Secondary button style

Link button

.button-set--tertiary
Tertiary button style

Link button

.button-set--small
Small button style

Link button

.button-set--large
Large button style

Link button

Markup
 <p class="button-set [modifier class]">
  <a href="#">Link button</a>
  <button>Button tag</button>
  <input type="submit" value="Submit button" />
 </p>
Source: scss/objects/_button.scss, line 74