2017-08-24 12:54:16 +02:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
sitemap: false
|
|
|
|
|
|
|
|
title: Style Guide
|
|
|
|
subtitle: Look sharp and stay consistent
|
|
|
|
description: Look sharp and stay consistent
|
|
|
|
|
|
|
|
css: page-styleguide
|
2017-08-24 13:47:28 +02:00
|
|
|
narrow: true
|
2017-08-24 12:54:16 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# Typography
|
|
|
|
|
|
|
|
|
|
|
|
# Heading 1
|
|
|
|
|
|
|
|
## Heading 2
|
|
|
|
|
|
|
|
### Heading 3
|
|
|
|
|
|
|
|
#### Heading 4
|
|
|
|
|
|
|
|
##### Heading 5
|
|
|
|
|
|
|
|
###### Heading 6
|
|
|
|
|
|
|
|
* Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
|
|
|
|
* Est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
|
|
|
|
* Maecenas sed diam eget risus varius blandit sit amet non magna.
|
|
|
|
|
|
|
|
1. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
|
|
|
|
2. Est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
|
|
|
|
3. Maecenas sed diam eget risus varius blandit sit amet non magna.
|
|
|
|
|
|
|
|
# Logo
|
|
|
|
|
2017-08-24 13:47:28 +02:00
|
|
|
Logo can be used with a base class and modifier classes for size & color:
|
|
|
|
|
|
|
|
- `logo`: default logo
|
|
|
|
- `logo--sm`: small version
|
|
|
|
- `logo--lg`: large version
|
|
|
|
- `logo--dark`: dark version
|
|
|
|
- `logo--white`: white version
|
|
|
|
|
|
|
|
<svg class="logo logo--lg" aria-labelledby="title"><title>Logo IPDB</title><use xlink:href="/assets/img/sprite.svg#logo"></use></svg>
|
|
|
|
|
|
|
|
<svg class="logo" aria-labelledby="title"><title>Logo IPDB</title><use xlink:href="/assets/img/sprite.svg#logo"></use></svg>
|
|
|
|
|
|
|
|
<svg class="logo logo--sm" aria-labelledby="title"><title>Logo IPDB</title><use xlink:href="/assets/img/sprite.svg#logo"></use></svg>
|
|
|
|
|
|
|
|
<svg class="logo logo--dark" aria-labelledby="title"><title>Logo IPDB</title><use xlink:href="/assets/img/sprite.svg#logo"></use></svg>
|
|
|
|
|
|
|
|
<svg class="logo logo--white" aria-labelledby="title"><title>Logo IPDB</title><use xlink:href="/assets/img/sprite.svg#logo"></use></svg>
|
|
|
|
|
2017-08-24 12:54:16 +02:00
|
|
|
|
|
|
|
# Components
|
|
|
|
|
|
|
|
## Buttons
|
|
|
|
|
|
|
|
<a class="button" href="#">Button</a> <a class="button button--small" href="#">Button</a> <a class="button button--large" href="#">Button</a>
|
|
|
|
|
|
|
|
<a class="button button--primary" href="#">Button</a> <a class="button button--primary button--small" href="#">Button</a> <a class="button button--primary button--large" href="#">Button</a>
|
|
|
|
|
|
|
|
<a class="button button--dark" href="#">Button</a> <a class="button button--dark button--small" href="#">Button</a> <a class="button button--dark button--large" href="#">Button</a>
|
|
|
|
|
2017-08-24 17:18:17 +02:00
|
|
|
<a class="button button--text" href="#">Button</a> <a class="button button--small button--text" href="#">Button</a> <a class="button button--large button--text" href="#">Button</a>
|
|
|
|
|
2017-08-24 12:54:16 +02:00
|
|
|
## Forms
|
|
|
|
|
|
|
|
<form class="form js-parsley" action="#">
|
|
|
|
<div class="form-group">
|
|
|
|
<input class="form-control" type="text" id="name" name="name" required>
|
|
|
|
<label class="form-label" for="name">Your Name</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<input class="form-control" type="email" id="email" name="email">
|
|
|
|
<label class="form-label" for="email">Your Email</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<input class="form-control" type="tel" id="phone" name="phone">
|
|
|
|
<label class="form-label" for="phone">Your Phone</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<select class="form-control" id="select" name="select" required data-required="true">
|
|
|
|
<option value=""> </option>
|
|
|
|
<option value="Automotive">Automotive</option>
|
|
|
|
<option value="Banking">Banking</option>
|
|
|
|
<option value="Consulting">Consulting</option>
|
|
|
|
<option value="Data">Data</option>
|
|
|
|
<option value="Automotive">Automotive</option>
|
|
|
|
<option value="Banking">Banking</option>
|
|
|
|
<option value="Consulting">Consulting</option>
|
|
|
|
<option value="Data">Data</option>
|
|
|
|
<option value="Automotive">Automotive</option>
|
|
|
|
<option value="Banking">Banking</option>
|
|
|
|
<option value="Consulting">Consulting</option>
|
|
|
|
<option value="Data">Data</option>
|
|
|
|
</select>
|
|
|
|
<label class="form-label" for="industry">Industry</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<textarea class="form-control" id="comment" name="comment" rows="1"></textarea>
|
|
|
|
<label class="form-label" for="comment">Autogrowing textarea</label>
|
|
|
|
</div>
|
|
|
|
<p class="form-group text-dimmed mini">
|
|
|
|
Fields marked with an <span class="required">*</span> are required.
|
|
|
|
</p>
|
|
|
|
<div class="form-group">
|
|
|
|
<input class="btn btn-primary" type="submit" value="Submit">
|
|
|
|
</div>
|
|
|
|
</form>
|