1
0
mirror of https://github.com/bigchaindb/site.git synced 2025-02-14 21:10:28 +01:00

team unit

This commit is contained in:
Matthias Kretschmann 2016-01-09 18:36:18 +01:00
parent ccf5cca86d
commit d877230627
12 changed files with 75 additions and 17 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,5 +1,27 @@
.page__header { .page__header {
position: relative;
// background
background: url('../img/photo1.jpg') no-repeat center bottom;
background-size: cover;
// color overlay
&:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
//background: $brand-main-brown;
background: linear-gradient(to top left, $brand-main-blue 0%, $brand-main-brown 100%);
opacity: .7;
z-index: 0;
}
padding: ($spacer * 4) 0; padding: ($spacer * 4) 0;
} }
@ -9,5 +31,11 @@
} }
.page__content { .page__content {
.row {
> h2 {
border-bottom: 1px solid $gray-lightest;
padding-bottom: $spacer;
text-align: center;
}
}
} }

View File

@ -1,5 +1,5 @@
.img__responsive { .img--responsive {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
} }

View File

@ -0,0 +1,24 @@
//
// Team Unit
// ---
// bigchain.io
//
// Base class
.team {}
.team__image {
@extend .img--responsive;
width: 230px;
border-radius: 50%;
}
.team__name {
@extend .h5;
color: $text-color;
margin-bottom: 0;
}
.team__position {
@extend .text-dimmed;
}

View File

@ -141,6 +141,8 @@ strong,
.text-uppercase { text-transform: uppercase; } .text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; } .text-capitalize { text-transform: capitalize; }
.text-dimmed { color: $gray-light }
// //
// Lists // Lists
// //

View File

@ -1,20 +1,20 @@
- name: Bruce Pon - name: Bruce Pon
position: CEO position: CEO
image: image: team-bruce.jpg
- name: Trent McConaghy - name: Trent McConaghy
position: CTO position: CTO
image: image: team-trent.jpg
- name: Andreas Müller - name: Andreas Müller
position: Databases position: Databases
image: image: team-andreas.jpg
- name: Rodolphe Marques - name: Rodolphe Marques
position: Protocols position: Protocols
image: image: team-rodolphe.jpg
- name: Troy McConaghy - name: Troy McConaghy
position: position:
image: image: team-troy.jpg

View File

@ -1,10 +1,14 @@
{% for member in site.data.team %} <div class="grid grid--full grid-small--third grid--gutters text-center">
<div class="grid__col">
<article class="team"> {% for member in site.data.team %}
<img class="team__image" src="/assets/img/team/{{ member.image }}"> <div class="grid__col">
<h1 class="team__name">{{ member.name }}</h1> <article class="team">
<p class="team__position">{{ member.position }}</p> <img class="team__image" src="/assets/img/{{ member.image }}">
</article> <h1 class="team__name">{{ member.name }}</h1>
<p class="team__position">{{ member.position }}</p>
</article>
</div>
{% endfor %}
</div> </div>
{% endfor %}

View File

@ -10,6 +10,6 @@ We released a whitepaper in Feb 2015 highlighting the ideal characteristics of a
The result is Bigchain, a blockchain for the world. The result is Bigchain, a blockchain for the world.
# Team ## Team
{% include team.html %} {% include team.html %}