mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-02 00:05:37 +01:00
147 lines
2.6 KiB
SCSS
147 lines
2.6 KiB
SCSS
//
|
|
// Page: Get started
|
|
// ---
|
|
// bigchaindb.com
|
|
//
|
|
|
|
.driver {
|
|
padding: $spacer;
|
|
background: rgba($brand-main-blue-light, .15);
|
|
border-top-left-radius: $border-radius;
|
|
border-top-right-radius: $border-radius;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
box-shadow: none;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.driver__title {
|
|
color: #fff;
|
|
}
|
|
|
|
.driver__logo {
|
|
background: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.driver,
|
|
.driver__logo,
|
|
.driver__title {
|
|
@include transition;
|
|
}
|
|
|
|
.driver__logo {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
background: $brand-primary;
|
|
}
|
|
|
|
.driver__title {
|
|
@extend .h5;
|
|
color: $brand-primary;
|
|
margin-top: 0;
|
|
margin-bottom: $spacer;
|
|
}
|
|
|
|
.driver__meta {
|
|
@include text-small;
|
|
width: 100%;
|
|
align-self: flex-end;
|
|
margin: 0;
|
|
|
|
span {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.driver__version {
|
|
opacity: .75;
|
|
}
|
|
|
|
.driver--community {
|
|
text-align: center;
|
|
justify-content: center;
|
|
|
|
.driver__title {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.driver__logo {
|
|
margin-bottom: $spacer / 2;
|
|
}
|
|
}
|
|
|
|
.section--community {
|
|
text-align: center;
|
|
|
|
.section-header {
|
|
.section-description { margin-bottom: ($spacer * 2); }
|
|
}
|
|
|
|
.grid h1 {
|
|
@extend .h3;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.social-link {
|
|
&,
|
|
.icon {
|
|
@include transition;
|
|
}
|
|
display: inline-block;
|
|
box-shadow: none;
|
|
padding: $btn-padding-y-sm $btn-padding-x-sm;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background: none;
|
|
|
|
.icon {
|
|
fill: lighten($brand-primary, 10%);
|
|
filter: drop-shadow(0 1px 4px rgba($brand-main-blue-dark, .4));
|
|
transform: translateY(-1px);
|
|
|
|
&.icon--gitter {
|
|
stroke: lighten($brand-primary, 10%);
|
|
}
|
|
}
|
|
}
|
|
|
|
&: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;
|
|
|
|
&.icon--gitter {
|
|
stroke: $brand-primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.social-link__title {
|
|
@include text-small;
|
|
color: $brand-primary;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.community__actions {
|
|
border-bottom: 1px solid $gray-dark;
|
|
margin-bottom: $spacer * 3;
|
|
padding-bottom: $spacer * 3;
|
|
}
|