2016-01-21 11:51:05 +01:00
|
|
|
//
|
2017-06-15 19:16:45 +02:00
|
|
|
// Page: Get started
|
2016-01-21 11:51:05 +01:00
|
|
|
// ---
|
2017-05-29 21:15:48 +02:00
|
|
|
// bigchaindb.com
|
2016-01-21 11:51:05 +01:00
|
|
|
//
|
|
|
|
|
2017-06-27 16:16:51 +02:00
|
|
|
.section--firsttransaction {
|
2017-06-27 21:59:58 +02:00
|
|
|
.section-title {
|
2017-06-29 15:28:24 +02:00
|
|
|
font-size: $font-size-h4;
|
|
|
|
margin-bottom: $spacer * 2;
|
2017-06-29 15:05:18 +02:00
|
|
|
text-align: left;
|
2017-06-27 21:59:58 +02:00
|
|
|
|
2017-06-29 15:16:10 +02:00
|
|
|
@media ($screen-sm) {
|
|
|
|
margin-top: -($spacer * 2);
|
|
|
|
}
|
|
|
|
|
2017-06-27 21:59:58 +02:00
|
|
|
&:after {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-06-28 17:13:20 +02:00
|
|
|
|
|
|
|
+ .grid {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2017-06-27 16:16:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 21:51:09 +02:00
|
|
|
.form--transaction {
|
|
|
|
// mnml frm
|
|
|
|
background: none;
|
|
|
|
padding: 0;
|
2017-06-29 15:16:10 +02:00
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
min-height: 340px;
|
|
|
|
}
|
2017-06-27 21:59:58 +02:00
|
|
|
|
|
|
|
.form-group:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2017-06-27 21:51:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.form--transaction__content {
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
2017-06-27 21:59:58 +02:00
|
|
|
width: 100%;
|
2017-06-27 21:51:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-22 16:38:00 +02:00
|
|
|
.waiting {
|
2017-06-27 16:16:51 +02:00
|
|
|
width: 100%;
|
|
|
|
|
2017-06-22 16:38:00 +02:00
|
|
|
pre {
|
2017-06-29 15:16:10 +02:00
|
|
|
min-height: 200px;
|
2017-06-22 16:38:00 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-06-27 16:16:51 +02:00
|
|
|
text-align: center;
|
2017-06-22 16:38:00 +02:00
|
|
|
font-style: italic;
|
|
|
|
border: 1px solid $gray-dark;
|
|
|
|
background: none;
|
2017-06-29 15:39:43 +02:00
|
|
|
overflow: hidden;
|
2017-06-29 15:16:10 +02:00
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
min-height: 340px;
|
|
|
|
}
|
2017-06-22 16:38:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.response {
|
|
|
|
pre {
|
2017-06-22 18:12:56 +02:00
|
|
|
border: 1px solid $gray-dark;
|
2017-06-27 16:16:51 +02:00
|
|
|
line-height: 1.3;
|
2017-06-29 15:16:10 +02:00
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
min-height: 340px;
|
|
|
|
}
|
2017-06-22 16:38:00 +02:00
|
|
|
}
|
2017-06-27 16:16:51 +02:00
|
|
|
|
|
|
|
code {
|
|
|
|
font-size: $font-size-xs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.message {
|
2017-06-27 21:51:09 +02:00
|
|
|
font-size: $font-size-base;
|
2017-06-22 18:12:56 +02:00
|
|
|
}
|
|
|
|
|
2017-06-28 15:57:38 +02:00
|
|
|
.code-example {
|
|
|
|
@include transition;
|
2017-06-29 15:16:10 +02:00
|
|
|
margin-top: $spacer * 2;
|
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
max-width: 50%;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2017-06-28 15:57:38 +02:00
|
|
|
|
|
|
|
.nav-link,
|
|
|
|
pre {
|
|
|
|
font-size: $font-size-xs;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs {
|
|
|
|
border-bottom-color: $gray-light;
|
2017-06-28 17:13:20 +02:00
|
|
|
opacity: .6;
|
2017-06-28 15:57:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
padding-top: $spacer / 4;
|
|
|
|
padding-bottom: $spacer / 4;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-bottom: 2px solid $gray-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
background: none;
|
2017-06-28 17:13:20 +02:00
|
|
|
padding: $spacer * 1.5 0 0;
|
|
|
|
margin-bottom: 0;
|
2017-06-29 16:53:15 +02:00
|
|
|
overflow-y: auto;
|
2017-06-29 15:39:43 +02:00
|
|
|
overflow-x: auto;
|
2017-06-28 15:57:38 +02:00
|
|
|
}
|
2017-06-29 16:53:15 +02:00
|
|
|
|
|
|
|
.highlight .p {
|
|
|
|
color: lighten(#41706f, 25%);
|
|
|
|
}
|
2017-06-28 15:57:38 +02:00
|
|
|
}
|
|
|
|
|
2017-06-22 16:38:00 +02:00
|
|
|
.section-title--numbered {
|
|
|
|
span {
|
|
|
|
text-align: center;
|
|
|
|
display: block;
|
2017-06-26 22:38:25 +02:00
|
|
|
margin: auto auto $spacer / 2;
|
2017-06-22 16:38:00 +02:00
|
|
|
width: 3rem;
|
|
|
|
height: 3rem;
|
|
|
|
border-radius: 50%;
|
|
|
|
font-size: $font-size-lg;
|
2017-06-27 01:02:54 +02:00
|
|
|
vertical-align: .4rem;
|
2017-06-22 16:38:00 +02:00
|
|
|
background: $headings-color;
|
|
|
|
color: $gray;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-left & {
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.background--light & {
|
|
|
|
span {
|
|
|
|
background: $gray-light;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 11:53:39 +02:00
|
|
|
//
|
2017-06-26 19:03:29 +02:00
|
|
|
// Section: server
|
2017-06-26 11:53:39 +02:00
|
|
|
//
|
2017-06-26 19:03:29 +02:00
|
|
|
.section--server {
|
|
|
|
padding-bottom: 0;
|
2017-06-27 01:02:54 +02:00
|
|
|
|
|
|
|
.btn {
|
|
|
|
margin-top: $spacer / 2;
|
|
|
|
}
|
2017-06-26 19:03:29 +02:00
|
|
|
}
|
|
|
|
|
2017-06-27 21:51:09 +02:00
|
|
|
//
|
|
|
|
// All your star bases belong to us
|
|
|
|
//
|
|
|
|
// .starbase--server is the baseline
|
|
|
|
//
|
2017-06-26 19:03:29 +02:00
|
|
|
.starbase {
|
|
|
|
position: relative;
|
|
|
|
margin-top: -($spacer * 2);
|
2017-06-27 19:55:43 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
2017-06-29 15:05:18 +02:00
|
|
|
opacity: .7;
|
2017-06-26 19:03:29 +02:00
|
|
|
|
|
|
|
// horizon layer
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
background: #445261;
|
|
|
|
clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.starbase__image {
|
2017-06-26 20:15:44 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
2017-06-26 19:03:29 +02:00
|
|
|
|
|
|
|
img {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-06-26 20:15:44 +02:00
|
|
|
margin-bottom: -1.45%;
|
2017-06-27 16:00:49 +02:00
|
|
|
width: 100%;
|
2017-06-26 19:03:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// surface layer
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
left: -5%;
|
|
|
|
right: -5%;
|
2017-06-27 21:51:09 +02:00
|
|
|
bottom: auto;
|
2017-06-27 01:02:54 +02:00
|
|
|
background: lighten($gray, 8%);
|
2017-06-26 19:03:29 +02:00
|
|
|
height: 24%;
|
2017-06-27 21:51:09 +02:00
|
|
|
width: calc(100vw + 5%);
|
2017-06-26 19:03:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 19:55:43 +02:00
|
|
|
// Drivers starbase
|
2017-06-27 21:51:09 +02:00
|
|
|
// All magic numbers, gonna wing it visually
|
2017-06-26 20:15:44 +02:00
|
|
|
.starbase--drivers {
|
2017-06-29 15:16:10 +02:00
|
|
|
min-height: 7rem;
|
|
|
|
|
|
|
|
@media ($screen-md) {
|
|
|
|
min-height: 12rem;
|
|
|
|
}
|
2017-06-27 19:55:43 +02:00
|
|
|
|
2017-06-26 20:15:44 +02:00
|
|
|
.starbase__image {
|
|
|
|
// surface layer
|
|
|
|
&:before {
|
2017-06-27 21:51:09 +02:00
|
|
|
height: 40%;
|
2017-06-26 20:15:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2017-06-27 19:55:43 +02:00
|
|
|
margin-bottom: -.5%;
|
2017-06-26 20:15:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 01:02:54 +02:00
|
|
|
.choice {
|
|
|
|
background: lighten($gray, 3%);
|
2017-06-26 19:03:29 +02:00
|
|
|
padding-top: $spacer * 4;
|
|
|
|
padding-bottom: $spacer * 4;
|
|
|
|
}
|
|
|
|
|
2017-06-27 01:02:54 +02:00
|
|
|
.choice__title {
|
2017-06-26 19:03:29 +02:00
|
|
|
font-size: $font-size-h3;
|
|
|
|
margin-top: 0;
|
2017-06-27 01:02:54 +02:00
|
|
|
margin-bottom: $spacer * $line-height;
|
2017-06-26 19:03:29 +02:00
|
|
|
|
|
|
|
// the bottom line
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
height: 2px;
|
|
|
|
width: 3rem;
|
|
|
|
display: block;
|
2017-06-27 01:02:54 +02:00
|
|
|
margin: ($spacer * $line-height) 0 0;
|
2017-06-26 19:03:29 +02:00
|
|
|
background: $gray-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.architecture {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 45rem;
|
2017-06-26 11:53:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 01:02:54 +02:00
|
|
|
.section--drivers {
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
.choice__title {
|
|
|
|
margin-bottom: $spacer * 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-15 22:11:46 +02:00
|
|
|
.driver {
|
|
|
|
padding: $spacer;
|
2017-06-27 12:10:36 +02:00
|
|
|
background: rgba($brand-main-blue-dark, .15);
|
2017-06-24 13:45:55 +02:00
|
|
|
border-radius: $border-radius;
|
2017-06-15 22:11:46 +02:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
2017-06-22 14:31:49 +02:00
|
|
|
box-shadow: none;
|
2017-06-15 22:11:46 +02:00
|
|
|
|
2017-06-26 22:38:25 +02:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2017-06-24 13:45:55 +02:00
|
|
|
background: $brand-primary;
|
|
|
|
box-shadow: 0 1px 4px rgba($brand-main-blue-dark, .4);
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
2017-06-15 22:11:46 +02:00
|
|
|
.driver__title {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver__logo {
|
2017-06-24 13:45:55 +02:00
|
|
|
fill: #fff;
|
2017-06-15 22:11:46 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-24 13:45:55 +02:00
|
|
|
|
|
|
|
&:active {
|
|
|
|
outline: 0;
|
|
|
|
transform: translateY(0);
|
|
|
|
box-shadow: 0 1px 2px rgba($brand-main-blue-dark, .3);
|
|
|
|
}
|
2017-06-15 22:11:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.driver,
|
|
|
|
.driver__logo,
|
|
|
|
.driver__title {
|
|
|
|
@include transition;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver__logo {
|
2017-06-22 14:31:49 +02:00
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
2017-06-24 13:45:55 +02:00
|
|
|
fill: $brand-primary;
|
2017-06-15 22:11:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.driver__title {
|
2017-06-22 14:31:49 +02:00
|
|
|
@extend .h5;
|
2017-06-15 22:11:46 +02:00
|
|
|
color: $brand-primary;
|
2017-06-22 14:31:49 +02:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $spacer;
|
2017-06-15 22:11:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.driver__meta {
|
|
|
|
@include text-small;
|
|
|
|
width: 100%;
|
|
|
|
align-self: flex-end;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver__version {
|
2017-06-27 01:02:54 +02:00
|
|
|
opacity: .75;
|
2017-06-15 22:11:46 +02:00
|
|
|
}
|
|
|
|
|
2017-06-22 14:31:49 +02:00
|
|
|
.driver--community {
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.driver__title {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 0;
|
2017-06-26 20:15:44 +02:00
|
|
|
font-size: $font-size-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver__repo {
|
|
|
|
font-size: $font-size-xs;
|
2017-06-22 14:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.driver__logo {
|
2017-06-26 20:15:44 +02:00
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
2017-06-22 14:31:49 +02:00
|
|
|
margin-bottom: $spacer / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 22:38:25 +02:00
|
|
|
//
|
|
|
|
// Section: Docs
|
|
|
|
//
|
2017-06-27 16:00:49 +02:00
|
|
|
.docs__actions {
|
2017-06-29 14:45:29 +02:00
|
|
|
border-top: 1px solid darken($brand-main-gray-light, 5%);
|
2017-06-27 16:00:49 +02:00
|
|
|
padding-top: $spacer * 2;
|
|
|
|
}
|
|
|
|
|
2017-06-27 12:10:36 +02:00
|
|
|
.docs__title {
|
2017-06-29 14:45:29 +02:00
|
|
|
@extend .h5;
|
2017-06-27 12:10:36 +02:00
|
|
|
margin-top: 0;
|
2017-06-29 14:45:29 +02:00
|
|
|
|
|
|
|
// the bottom line
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
height: 2px;
|
|
|
|
width: 2rem;
|
|
|
|
display: block;
|
|
|
|
margin-top: $spacer;
|
|
|
|
background: $gray-light;
|
|
|
|
}
|
2017-06-27 12:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.docs__list {
|
|
|
|
padding-left: 0;
|
2017-06-27 19:55:43 +02:00
|
|
|
text-align: left;
|
2017-06-27 12:10:36 +02:00
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
2017-06-27 15:11:18 +02:00
|
|
|
padding-left: 0;
|
2017-06-27 12:10:36 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-26 22:38:25 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Section: Community
|
|
|
|
//
|
2017-06-15 19:16:45 +02:00
|
|
|
.section--community {
|
2017-05-06 18:03:40 +02:00
|
|
|
text-align: center;
|
2016-02-09 19:20:30 +01:00
|
|
|
|
2016-02-09 19:08:43 +01:00
|
|
|
.section-header {
|
2017-06-26 22:38:25 +02:00
|
|
|
.section-description {
|
|
|
|
margin-bottom: ($spacer * 2);
|
|
|
|
}
|
2016-02-09 19:08:43 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 01:53:59 +01:00
|
|
|
.social-link {
|
|
|
|
&,
|
|
|
|
.icon {
|
2017-05-06 18:03:40 +02:00
|
|
|
@include transition;
|
2016-02-09 01:53:59 +01:00
|
|
|
}
|
2017-05-29 16:32:03 +02:00
|
|
|
display: inline-block;
|
2016-02-09 01:53:59 +01:00
|
|
|
box-shadow: none;
|
|
|
|
padding: $btn-padding-y-sm $btn-padding-x-sm;
|
2017-06-27 12:10:36 +02:00
|
|
|
margin-top: $spacer;
|
2016-02-09 01:53:59 +01:00
|
|
|
|
2017-06-26 22:38:25 +02:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2016-02-09 01:53:59 +01:00
|
|
|
background: none;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
fill: lighten($brand-primary, 10%);
|
|
|
|
filter: drop-shadow(0 1px 4px rgba($brand-main-blue-dark, .4));
|
|
|
|
transform: translateY(-1px);
|
2017-06-26 11:53:39 +02:00
|
|
|
}
|
2016-02-18 16:27:54 +01:00
|
|
|
|
2017-06-26 11:53:39 +02:00
|
|
|
.icon--gitter {
|
|
|
|
stroke: lighten($brand-primary, 10%);
|
2016-02-09 01:53:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
outline: 0;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
fill: $brand-primary;
|
|
|
|
filter: drop-shadow(0 1px 2px rgba($brand-main-blue-dark, .3));
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
fill: $brand-primary;
|
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
2016-02-18 16:27:54 +01:00
|
|
|
|
|
|
|
&.icon--gitter {
|
|
|
|
stroke: $brand-primary;
|
|
|
|
}
|
2016-02-09 01:53:59 +01:00
|
|
|
}
|
|
|
|
}
|
2017-05-29 16:32:03 +02:00
|
|
|
|
|
|
|
.social-link__title {
|
|
|
|
@include text-small;
|
|
|
|
color: $brand-primary;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-06-27 12:10:36 +02:00
|
|
|
|
|
|
|
h5 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2016-01-21 11:51:05 +01:00
|
|
|
}
|
2016-02-10 01:04:57 +01:00
|
|
|
|
2017-06-22 14:52:59 +02:00
|
|
|
.community__actions {
|
|
|
|
border-bottom: 1px solid $gray-dark;
|
|
|
|
margin-bottom: $spacer * 3;
|
2017-06-27 12:10:36 +02:00
|
|
|
padding-bottom: $spacer * 2;
|
2017-06-24 13:45:55 +02:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
2017-06-27 12:10:36 +02:00
|
|
|
fill: $brand-main-blue-light;
|
|
|
|
opacity: .4;
|
|
|
|
margin-bottom: $spacer / 2;
|
2017-06-24 13:45:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon--gitter {
|
2017-06-27 12:10:36 +02:00
|
|
|
stroke: $brand-main-blue-light;
|
2017-06-24 13:45:55 +02:00
|
|
|
stroke-width: 2;
|
|
|
|
}
|
2017-06-27 12:10:36 +02:00
|
|
|
|
|
|
|
p {
|
|
|
|
color: $brand-main-blue-light;
|
|
|
|
opacity: .8;
|
|
|
|
}
|
2016-02-11 16:45:32 +01:00
|
|
|
}
|