mirror of
https://github.com/ipdb/website.git
synced 2024-11-14 17:24:48 +01:00
122 lines
4.8 KiB
Markdown
122 lines
4.8 KiB
Markdown
---
|
||
layout: page
|
||
sitemap: false
|
||
|
||
title: Style Guide
|
||
subtitle: Look sharp and stay consistent
|
||
description: Look sharp and stay consistent
|
||
|
||
css: page-styleguide
|
||
narrow: true
|
||
---
|
||
|
||
# Typography
|
||
|
||
IPDB is a planetary-scale blockchain database built on [BigchainDB](https://www.bigchaindb.com). It’s a ready-to-use public network with a focus on **strong governance**. It shares _all the features_ of BigchainDB to make developers’ lives easier.
|
||
|
||
* 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.
|
||
|
||
# Heading 1
|
||
|
||
## Heading 2
|
||
|
||
### Heading 3
|
||
|
||
#### Heading 4
|
||
|
||
##### Heading 5
|
||
|
||
###### Heading 6
|
||
|
||
|
||
# Logo
|
||
|
||
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>
|
||
|
||
|
||
# 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>
|
||
|
||
<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>
|
||
|
||
## 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>
|
||
|
||
## Section header
|
||
|
||
<header class="section__header">
|
||
<h1 class="section__title">A planetary-scale blockchain database</h1>
|
||
<p class="section__description">IPDB relies on caretakers to run the BigchainDB nodes that store and validate transactions. The IPDB Caretakers are the members of the IPDB Foundation.</p>
|
||
</header>
|