Design Guide

Table of Contents

  1. Brand
  2. Typography
    1. Body Text
    2. Colours
    3. Headings
  3. Colour Palette
  4. Forms
    1. Form Controls
    2. Validation States
  5. Buttons
  6. Components
  7. Spacing
  8. Iconography
  9. Imagery
  10. Dos and Don'ts

1. Brand

Aritaum

2. Typography

2.1 Body Text

Bacon ipsum dolor amet cupim alcatra tri-tip strip steak pork chop pastrami pig cow. Frankfurter pork loin spare ribs meatloaf, jowl bacon boudin beef capicola. Pork chop meatloaf salami picanha spare ribs chicken ground round strip steak landjaeger burgdoggen turducken tenderloin pastrami rump ham. Burgdoggen swine capicola drumstick cupim shoulder. Sausage corned beef swine beef meatloaf biltong andouille short ribs tail t-bone flank. Cow pork loin alcatra, fatback strip steak flank doner salami. T-bone meatloaf venison cupim tri-tip ribeye jerky.

<p>Bacon ipsum dolor amet cupim alcatra tri-tip strip steak pork chop pastrami pig cow. Frankfurter pork loin spare ribs meatloaf, jowl bacon boudin beef capicola. Pork chop meatloaf salami picanha spare ribs chicken ground round strip steak landjaeger burgdoggen turducken tenderloin pastrami rump ham. Burgdoggen swine capicola drumstick cupim shoulder. Sausage corned beef swine beef meatloaf biltong andouille short ribs tail t-bone flank. Cow pork loin alcatra, fatback strip steak flank doner salami. T-bone meatloaf venison cupim tri-tip ribeye jerky.</p>

2.2 Colours

2.3 Headings

h1. Heading 1

<h1>h1. Heading 1</h1>

h2. Heading 2

<h2>h2. Heading 2</h2>

h3. Heading 3

<h3>h3. Heading 3</h3>

h4. Heading 4

<h4>h4. Heading 4</h4>
h5. Heading 5
<h5>h5. Heading 5</h5>
h6. Heading 6
<h6>h6. Heading 6</h6>

3. Colour Palette

4. Forms

4.1 Form Controls

      
  <form>
    <div>
      <label for="example-text-input">Text Input</label>
      <input id="example-text-input" type="text" placeholder="Text Here"/>
    </div>
    <div>
      <label for="example-email-input">Email Input</label>
      <input id="example-email-input" type="email" placeholder="Email Here">
    </div>
    <div>
      <label for="example-password-input">Password Input</label>
      <input id="example-password-input" type="password" placeholder="Password Here">
    </div>
    <div>
      <label for="example-form-control-select">Select</label>
      <select id="example-form-control-select">
        <option>1</option>
        <option>2</option>
        <option>3</option>
        <option>4</option>
        <option>5</option>
      </select>
    </div>
    <div>
      <label for="example-form-control-textarea1">Example textarea</label>
      <textarea id="example-form-control-textarea1" rows="3"></textarea>
    </div>
    <div>
      <input id="checkbox" type="checkbox" class="checkbox" value="option">
      <label for="checkbox">Check this out! Example checkbox</label>
    </div>
    <div>
      <input id="radi1o" type="radio" name="exampleRadios" class="radio" value="option1" checked>
      <label for="radio1">Example Radio Button 1</label>
      <input id="radio2" type="radio" name="exampleRadios" class="radio" value="option1" checked>
      <label for="radio2">Example Radio Button 2</label>
      <label>
    </div>
  </form>
      
    

4.2 Validation States

5. Buttons

Link Button Link
      
  <a class="link" href="#" role="button">Link</a>
  <a class="button" href="#" role="button">Button Link</a>
  <button class="link" type="button">Button</button>
  <button class="button" type="submit">Button</button>
  <button class="button button--small" type="button">Small Button</button>
  <button class="button" type="button" disabled>Disabled Button</button>
  <input class="button" type="button" value="Input">
  <input class="button" type="submit" value="Submit">
  <input class="button" type="reset" value="Reset">
      
    

6. Components

7. Spacing

8. Iconography

9. Imagery

Static

Image placeholder

Lazy Loaded with srcset

Full width

Variable widths

Note: The above image loads '1440:480,800:400,320' as the breakpoints, meaning it displays a 480px image for screens <= 1440px, 400px for screens <= 800px and 320px for screens <= 320px. This is useful for example for product tiles that should be 1/3 on desktop, 1/2 on tablet and 1/1 on mobile.

10. Dos and Dont's