Skip to content
This repository was archived by the owner on Oct 10, 2019. It is now read-only.

Commit ce16114

Browse files
authored
Merge pull request #46 from ipdb/feature/shutdown
Farewell
2 parents 0dfcecf + ae0df2a commit ce16114

35 files changed

+74
-1533
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
> The blockchain database network for the decentralized stack
44
> https://ipdb.io
55
6+
**Note: As of January 19th, 2018, IPDB will be shutting down. [Read about why](https://ipdb.io).**
7+
68
[![Build Status](https://travis-ci.org/ipdb/website.svg?branch=master)](https://travis-ci.org/ipdb/website)
79
[![css bigchaindb](https://img.shields.io/badge/css-bigchaindb-39BA91.svg)](https://github.com/bigchaindb/stylelint-config-bigchaindb)
810
[![js ascribe](https://img.shields.io/badge/js-ascribe-39BA91.svg)](https://github.com/ascribe/javascript)
911
[![Greenkeeper badge](https://badges.greenkeeper.io/ipdb/website.svg)](https://greenkeeper.io/)
1012

1113
---
1214

13-
[**Live**](https://ipdb.io) | [**Beta**](https://beta.ipdb.io) | [**Styleguide**](https://beta.ipdb.io/styleguide/)
15+
[**Live**](https://ipdb.io) | [**Styleguide**](https://ipdb.io/styleguide/)
1416

1517
---
1618

-9.45 KB
Binary file not shown.
-28.6 KB
Binary file not shown.
-59.6 KB
Binary file not shown.
-118 KB
Binary file not shown.
-38 KB
Binary file not shown.

_src/_assets/scss/_hero.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
$edge-height-sm: $spacer * 2;
2-
$edge-height: $spacer * 4;
2+
$edge-height: $spacer * 3;
33

44
.hero {
55
background: $brand-07;
6-
padding-top: $spacer * 2;
6+
padding-top: $spacer * 3;
77
padding-bottom: 0;
8-
height: calc(100vh - #{$edge-height-sm});
9-
min-height: 580px;
8+
height: calc(80vh - #{$edge-height-sm});
109
margin-bottom: $edge-height-sm;
1110
position: relative;
1211
display: flex;
1312
flex-wrap: wrap;
1413
align-items: center;
1514

1615
@media ($screen-sm) {
17-
height: calc(100vh - #{$edge-height});
16+
height: calc(90vh - #{$edge-height});
1817
margin-bottom: $edge-height;
18+
min-height: 500px;
1919
}
2020

2121
&:after {

_src/_assets/scss/_typography.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ ol {
132132

133133

134134
.lead {
135-
color: $brand-03;
136135
font-size: $font-size-large;
137136
}
138137

_src/_assets/scss/page-front.scss

Lines changed: 9 additions & 281 deletions
Original file line numberDiff line numberDiff line change
@@ -1,294 +1,22 @@
11
@import 'variables';
22
@import 'hero';
33

4-
.section--intro {
5-
.section__description {
6-
margin-bottom: $spacer * 2;
7-
}
8-
}
9-
10-
.feature {
11-
padding-top: $spacer;
12-
padding-bottom: $spacer;
13-
14-
&:first-child {
15-
padding-top: $spacer * 2;
16-
}
17-
}
18-
19-
.feature__image {
20-
margin: 0 auto;
21-
background: $brand-05;
22-
border-radius: $border-radius;
23-
overflow: hidden;
24-
max-width: 400px;
25-
26-
@media ($screen-sm) {
27-
margin: 0;
28-
}
29-
30-
img {
31-
width: 100%;
32-
height: auto;
33-
max-width: 100%;
34-
display: block;
35-
}
36-
}
37-
38-
.feature__title {
39-
font-size: $font-size-h4;
40-
margin-bottom: $spacer / $line-height;
41-
}
42-
43-
.feature__list {
44-
margin: 0;
45-
padding: 0;
46-
margin-top: $spacer;
47-
48-
li {
49-
display: block;
50-
color: $brand-02;
51-
52-
@media ($screen-sm) {
53-
display: inline-block;
54-
margin-left: $spacer * 2;
55-
56-
&:first-child {
57-
margin-left: 0;
58-
}
59-
}
60-
61-
&:before {
62-
content: '\2714';
63-
font-size: $font-size-small;
64-
color: $brand-success;
65-
margin-right: $spacer / 4;
66-
}
67-
}
68-
}
69-
70-
.connect__title {
71-
font-size: $font-size-h3;
72-
}
73-
74-
.roadmap {
75-
border-left: .2rem solid $brand-02;
76-
margin-left: $spacer * 2;
77-
padding-left: $spacer;
78-
margin-top: $spacer * 4;
79-
margin-bottom: $spacer * 2;
80-
81-
@media ($screen-sm) {
82-
margin-left: $spacer * 3;
83-
padding-left: 0;
84-
}
85-
86-
@media ($screen-md) {
87-
margin-left: 0;
88-
border-left: 0;
89-
border-bottom: .2rem solid $brand-02;
90-
91-
.row {
92-
display: flex;
93-
justify-content: space-between;
94-
}
95-
}
96-
}
97-
98-
.roadmap__step {
99-
position: relative;
100-
margin-bottom: $spacer * 2;
101-
102-
@media ($screen-md) {
103-
text-align: center;
104-
margin-bottom: 0;
105-
padding-left: $spacer / 2;
106-
padding-right: $spacer / 2;
107-
}
108-
109-
&:after {
110-
content: '\2714';
111-
color: transparent;
112-
text-align: center;
113-
font-size: $font-size-mini;
114-
line-height: 2;
115-
width: 1.75rem;
116-
height: 1.75rem;
117-
border-radius: 50%;
118-
display: inline-block;
119-
background: $brand-05;
120-
border: .2rem solid #fff;
121-
position: absolute;
122-
left: -2.95rem;
123-
top: -.25rem;
124-
125-
@media ($screen-md) {
126-
position: relative;
127-
left: auto;
128-
top: auto;
129-
bottom: -.95rem;
130-
}
131-
}
132-
133-
&.is-complete {
134-
&:after {
135-
content: '\2714';
136-
color: $brand-03;
137-
background: $brand-success;
138-
}
139-
}
140-
141-
&.is-progress {
142-
&:after {
143-
background: $brand-07;
144-
}
145-
}
146-
}
147-
148-
.roadmap__net,
149-
.roadmap__target {
150-
margin-bottom: 0;
151-
}
152-
153-
.roadmap__target {
154-
color: $brand-07;
155-
}
156-
157-
.roadmap__time {
158-
color: $brand-02;
159-
font-size: $font-size-small;
160-
161-
@media ($screen-md) {
162-
position: absolute;
163-
left: 0;
164-
bottom: -70%;
165-
width: 100%;
166-
}
167-
}
168-
169-
//
170-
// Get started
171-
//
172-
.section--getstarted {
173-
counter-reset: getstarted-steps;
174-
175-
.feature__image {
176-
background: rgba(255, 255, 255, .5);
177-
}
178-
179-
.section__actions {
180-
border-top: 0;
181-
padding-top: 0;
182-
margin-top: $spacer * 2;
183-
}
184-
}
185-
186-
.getstarted-bigchaindb,
187-
.getstarted-tools {
188-
padding-top: $spacer * 3;
189-
margin-top: $spacer * 3;
190-
border-top: .1rem solid darken($brand-05, 8%);
191-
192-
.grid {
193-
margin-bottom: 0;
194-
}
195-
196-
.feature__image {
197-
background: #8e9eb0;
198-
display: flex;
199-
align-items: flex-end;
200-
padding: $spacer;
201-
padding-bottom: 0;
202-
203-
svg {
204-
margin-bottom: -.5rem;
205-
}
206-
}
207-
}
208-
209-
.getstarted {
210-
color: $text-color;
211-
counter-increment: getstarted-steps;
212-
margin-top: $spacer * 2;
213-
display: block;
214-
padding-top: $spacer;
215-
padding-bottom: $spacer;
216-
217-
@media ($screen-sm) {
218-
display: flex;
219-
flex-wrap: wrap;
220-
height: 100%;
221-
margin-top: 0;
222-
padding-left: $spacer * 2;
223-
padding-right: $spacer * 2;
224-
225-
.grid__col:first-child & {
226-
border-right: .1rem solid darken($brand-05, 8%);
227-
padding-left: 0;
228-
}
229-
230-
.grid__col:last-child & {
231-
border-left: .1rem solid darken($brand-05, 8%);
232-
padding-right: 0;
233-
}
234-
}
235-
}
236-
237-
.getstarted__title {
238-
font-size: $font-size-h4;
239-
margin-bottom: $spacer / 4;
240-
241-
a & {
242-
color: $link-color;
243-
}
244-
245-
&:before {
246-
content: counter(getstarted-steps);
247-
display: block;
248-
background: rgba($brand-02, .3);
249-
width: 1.75rem;
250-
height: 1.75rem;
251-
border-radius: 50%;
252-
text-align: center;
253-
line-height: 1.75rem;
254-
font-size: $font-size-base;
255-
font-weight: $font-weight-bold;
256-
margin-bottom: $spacer / 1.5;
257-
color: $text-color;
258-
}
259-
}
260-
261-
.getstarted__text {
262-
opacity: .9;
263-
}
264-
265-
// Community tools
266-
.tool {
267-
margin-bottom: $spacer * 2;
268-
269-
&:last-child {
270-
margin-bottom: 0;
271-
}
272-
}
273-
274-
.tool__title {
275-
font-size: $font-size-h5;
276-
margin-bottom: $spacer / 4;
277-
278-
.icon {
279-
fill: inherit;
280-
opacity: .5;
281-
margin-left: $spacer / 2;
282-
width: $font-size-mini;
283-
margin-bottom: -.2rem;
284-
}
4+
.section--farewell {
5+
margin-top: -3rem;
6+
z-index: 2;
2857
}
2868

2879
//
28810
// Connect
28911
//
29012
.articles {
29113
max-width: 100%;
14+
margin-top: $spacer;
15+
margin-bottom: -$spacer;
16+
17+
.button {
18+
padding-bottom: 0;
19+
}
29220
}
29321

29422
.article {

0 commit comments

Comments
 (0)