site/_src/_assets/styles/_page-services.scss

143 lines
2.4 KiB
SCSS
Raw Normal View History

2017-04-06 12:02:25 +02:00
//
2018-04-12 11:22:13 +02:00
// Page: Services
2017-04-06 12:02:25 +02:00
// ---
// bigchaindb.com
//
2018-04-05 13:43:34 +02:00
.page-services {
2017-05-18 19:33:14 +02:00
// Different Features unit layout
2017-04-19 13:34:44 +02:00
.feature {
display: block;
}
2017-05-18 19:33:14 +02:00
.feature__title {
margin-bottom: $spacer;
2018-04-05 13:43:34 +02:00
display: block;
2017-05-18 19:33:14 +02:00
// the bottom line
2017-05-31 00:22:14 +02:00
&:after {
2017-05-18 19:33:14 +02:00
content: '';
height: 2px;
width: 3rem;
display: block;
margin-top: $spacer * $line-height;
}
}
2017-04-19 13:34:44 +02:00
.feature__icon {
margin-top: 0;
2017-05-18 19:33:14 +02:00
margin-bottom: $spacer / 6;
width: 2.2rem;
height: 2.2rem;
2017-04-19 13:34:44 +02:00
}
2017-04-06 12:02:25 +02:00
}
2017-04-10 13:25:44 +02:00
2018-04-05 13:43:34 +02:00
.hero--services {
2018-04-12 12:25:24 +02:00
.logo--services {
display: inline-block;
opacity: .75;
2018-04-13 14:29:41 +02:00
fill: $brand-main-blue-light;
2017-05-18 19:33:14 +02:00
}
2018-04-13 14:45:17 +02:00
.hero__title {
margin-top: $spacer;
}
2018-04-05 13:43:34 +02:00
.hero__subtitle {
2018-04-13 14:45:17 +02:00
margin-bottom: $spacer * 3;
2018-04-05 13:43:34 +02:00
font-size: $font-size-h5;
2017-05-18 19:33:14 +02:00
2018-04-05 13:43:34 +02:00
@media ($screen-sm) {
font-size: $font-size-h4;
2017-05-18 19:33:14 +02:00
}
2017-04-10 13:25:44 +02:00
}
.hero__content {
2018-04-05 13:43:34 +02:00
margin-top: $spacer * 2;
2017-04-10 13:25:44 +02:00
margin-bottom: $spacer * 6;
}
2017-04-12 16:36:57 +02:00
.btn {
2017-05-18 19:33:14 +02:00
min-width: 220px;
2017-04-12 16:36:57 +02:00
}
}
2018-04-12 11:22:13 +02:00
.section--servicesdetail {
2018-04-12 13:18:34 +02:00
.feature__icon {
2018-04-13 14:45:17 +02:00
stroke: rgba($brand-main-gray, .65);
color: rgba($brand-main-violet, .65);
}
.feature__title {
// the bottom line
&:after {
background: rgba($brand-main-gray, .2);
}
}
.feature__text {
color: rgba($brand-main-blue, .65);
2018-04-12 13:18:34 +02:00
}
2018-04-12 11:22:13 +02:00
.actions {
text-align: center;
2018-04-13 14:45:17 +02:00
padding-top: $spacer * 3;
border-top: 2px solid rgba($brand-main-gray, .1);
2018-04-12 11:22:13 +02:00
}
}
.section--servicesintro {
2017-05-18 19:33:14 +02:00
.grid,
.feature {
margin-bottom: 0;
}
.btn {
margin-top: $spacer * 2;
}
h2 {
@extend .h3;
margin-bottom: $spacer;
}
.feature__title {
// the bottom line
2017-05-31 00:22:14 +02:00
&:after {
2017-05-18 19:33:14 +02:00
background: rgba($gray-light, .4);
}
}
}
2018-04-12 11:22:13 +02:00
.section--servicestestimonial {
2017-04-20 10:48:43 +02:00
.testimonial {
@extend .large;
2017-05-18 19:33:14 +02:00
margin: 0 auto;
2017-04-20 10:48:43 +02:00
@media ($screen-sm) {
max-width: 66%;
}
}
.testimonial__quote {
2017-05-31 00:22:14 +02:00
&:before {
2017-04-20 10:48:43 +02:00
margin-left: -1.3rem;
}
}
2017-04-10 13:25:44 +02:00
}
2017-04-12 12:08:37 +02:00
2018-04-12 11:22:13 +02:00
.form--services {
2017-05-18 21:46:27 +02:00
background: darken($brand-main-blue, 5%);
.grid {
@media ($screen-sm) {
justify-content: space-between;
}
}
2017-05-31 00:22:14 +02:00
.grid__col {
@media ($screen-sm) {
flex-basis: 48%;
}
}
2017-04-12 12:08:37 +02:00
}