1
0
mirror of https://github.com/ipdb/website.git synced 2025-02-14 21:10:26 +01:00

add dates to roadmap

This commit is contained in:
Matthias Kretschmann 2017-08-30 12:11:53 +02:00
parent bdf330f0e1
commit a82989528b
Signed by: m
GPG Key ID: 606EEEF3C479A91F
4 changed files with 22 additions and 5 deletions

View File

@ -26,7 +26,7 @@ $font-weight-bold: 500 !default;
$font-size-base: 1rem !default; $font-size-base: 1rem !default;
$font-size-large: 1.25rem !default; $font-size-large: 1.25rem !default;
$font-size-small: .9rem !default; $font-size-small: .85rem !default;
$font-size-mini: .7rem !default; $font-size-mini: .7rem !default;
$font-size-h1: 2rem !default; $font-size-h1: 2rem !default;

View File

@ -69,7 +69,6 @@
} }
.roadmap__step { .roadmap__step {
font-size: $font-size-small;
position: relative; position: relative;
margin-bottom: $spacer * 2; margin-bottom: $spacer * 2;
@ -94,7 +93,7 @@
border: .2rem solid #fff; border: .2rem solid #fff;
position: absolute; position: absolute;
left: -2.95rem; left: -2.95rem;
top: 0; top: -.25rem;
@media ($screen-md) { @media ($screen-md) {
position: relative; position: relative;
@ -119,7 +118,8 @@
} }
} }
.roadmap__net { .roadmap__net,
.roadmap__target {
margin-bottom: 0; margin-bottom: 0;
} }
@ -127,6 +127,18 @@
color: $brand-07; color: $brand-07;
} }
.roadmap__time {
color: $brand-02;
font-size: $font-size-small;
@media ($screen-md) {
position: absolute;
left: 0;
bottom: -70%;
width: 100%;
}
}
// //
// Connect // Connect

View File

@ -23,7 +23,7 @@ intro:
foundation: foundation:
title: "IPDB Foundation: human-scale governance" title: "IPDB Foundation: human-scale governance"
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 and … summarize Jurisdictional diversity & Not for profit" 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."
button: "Learn about IPDB Foundation" button: "Learn about IPDB Foundation"
@ -34,15 +34,19 @@ roadmap:
- net: Test net - net: Test net
target: Demo app target: Demo app
status: complete status: complete
time: Q4 2016
- net: Test net - net: Test net
target: Invited users target: Invited users
status: complete status: complete
time: Q1 2017
- net: Test net - net: Test net
target: General public target: General public
status: complete status: complete
time: Q2 2017
- net: Production net - net: Production net
target: Demo app target: Demo app
status: progress status: progress
time: In progress
- net: Production net - net: Production net
target: Invited users target: Invited users
status: planned status: planned

View File

@ -145,6 +145,7 @@ css: page-front
<div class="roadmap__step is-{{ status }}"> <div class="roadmap__step is-{{ status }}">
<p class="roadmap__net">{{ step.net }}</p> <p class="roadmap__net">{{ step.net }}</p>
<p class="roadmap__target">{{ step.target }}</p> <p class="roadmap__target">{{ step.target }}</p>
{% if step.time %}<p class="roadmap__time">{{ step.time }}</p>{% endif %}
</div> </div>
{% endfor %} {% endfor %}