2017-03-28 14:22:01 +02:00
|
|
|
.page-usecases {
|
2017-04-10 17:14:35 +02:00
|
|
|
.header {
|
|
|
|
background-position: bottom center;
|
|
|
|
}
|
2017-04-19 19:19:14 +02:00
|
|
|
|
|
|
|
.section-header {
|
|
|
|
.icon {
|
|
|
|
stroke-width: 2;
|
|
|
|
}
|
|
|
|
}
|
2017-03-28 14:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section--intro {
|
|
|
|
.section-header {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-description {
|
2017-04-11 14:30:58 +02:00
|
|
|
margin-bottom: $spacer * 3;
|
|
|
|
padding-bottom: $spacer * 3;
|
2017-04-10 17:14:35 +02:00
|
|
|
border-bottom: 2px solid lighten($gray-dark, 10%);
|
2017-03-28 14:22:01 +02:00
|
|
|
}
|
2017-04-11 14:30:58 +02:00
|
|
|
|
|
|
|
.grid {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2017-03-28 14:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Industry section
|
|
|
|
//
|
|
|
|
.section--industry {
|
|
|
|
.section-header {
|
|
|
|
margin-bottom: $spacer * 2;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
2017-04-12 18:31:59 +02:00
|
|
|
margin-bottom: $spacer / 2;
|
2017-03-28 14:22:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title,
|
|
|
|
.section-description {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
2017-04-12 18:31:59 +02:00
|
|
|
@extend .h2;
|
2017-03-28 14:22:01 +02:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $spacer * 2;
|
|
|
|
|
2017-05-31 00:22:14 +02:00
|
|
|
&:after {
|
2017-03-28 14:22:01 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(even) {
|
|
|
|
@extend .background--darker;
|
|
|
|
|
|
|
|
.featuredusecase {
|
2017-04-10 17:14:35 +02:00
|
|
|
border-top-color: lighten($gray-dark, 5%);
|
2017-03-28 14:22:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.featuredusecase {
|
2017-04-10 17:14:35 +02:00
|
|
|
border-top: 2px solid lighten($gray-dark, 10%);
|
2017-03-28 14:22:01 +02:00
|
|
|
padding-top: $spacer * 2;
|
|
|
|
margin-top: $spacer * 2;
|
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.featuredusecase__logo {
|
|
|
|
box-shadow: none;
|
|
|
|
transition: .2s ease-out;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: none;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $brand-main-green;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
flex: 0 0 20%;
|
|
|
|
order: 2;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
img,
|
|
|
|
svg {
|
|
|
|
width: 80px;
|
|
|
|
max-width: 80px;
|
|
|
|
max-height: 60px;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: $spacer / 2;
|
|
|
|
opacity: .6;
|
|
|
|
align-self: flex-start; // work around stretched images flexbox bug
|
|
|
|
fill: $brand-main-blue-light;
|
|
|
|
transition: .2s ease-out;
|
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
width: 120px;
|
|
|
|
max-width: 120px;
|
|
|
|
max-height: 90px;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.featuredusecase__content {
|
|
|
|
flex: 0 0 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.featuredusecase__title {
|
2017-04-12 18:31:59 +02:00
|
|
|
@extend .h3;
|
2017-03-28 14:22:01 +02:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $brand-main-green;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Single use case page
|
|
|
|
//
|
|
|
|
.content--usecase {
|
|
|
|
padding-top: $spacer * 4;
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
> .row {
|
|
|
|
> h2 {
|
|
|
|
@extend .h3;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.testimonial {
|
|
|
|
@extend .large;
|
|
|
|
margin: $spacer * 4 auto;
|
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
max-width: 66%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 10:48:43 +02:00
|
|
|
.testimonial__quote {
|
|
|
|
&:before {
|
|
|
|
margin-left: -1.3rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-28 14:22:01 +02:00
|
|
|
.testimonial__avatar {
|
|
|
|
width: 5rem;
|
|
|
|
height: 5rem;
|
|
|
|
margin-top: $spacer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header--usecase {
|
2017-07-27 11:41:20 +02:00
|
|
|
padding-bottom: $spacer * 4;
|
|
|
|
|
2017-04-12 19:08:58 +02:00
|
|
|
hgroup {
|
2017-07-27 11:41:20 +02:00
|
|
|
margin-top: ($spacer * 3);
|
2017-04-12 19:08:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__title {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2017-03-28 14:22:01 +02:00
|
|
|
.header__logo {
|
|
|
|
width: 140px;
|
|
|
|
max-height: 100px;
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__label {
|
2017-04-12 19:08:58 +02:00
|
|
|
text-align: center;
|
2017-03-28 14:22:01 +02:00
|
|
|
display: block;
|
|
|
|
color: $brand-main-blue-light;
|
|
|
|
font-size: $font-size-lg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__about {
|
|
|
|
margin-top: $spacer * 4;
|
2017-04-10 17:14:35 +02:00
|
|
|
background: $gray-dark;
|
2017-03-28 14:22:01 +02:00
|
|
|
padding-top: $spacer * 3;
|
|
|
|
padding-bottom: $spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__about__title {
|
|
|
|
@extend .h4;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actionbar {
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: ($spacer * 2) $spacer;
|
2017-05-22 16:54:04 +02:00
|
|
|
background: $brand-main-blue;
|
|
|
|
color: #fff;
|
2017-03-28 14:22:01 +02:00
|
|
|
text-align: center;
|
|
|
|
box-shadow: none;
|
|
|
|
font-family: $btn-font-family;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2017-05-22 16:54:04 +02:00
|
|
|
background: lighten($brand-main-blue, 5%);
|
2017-03-28 14:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.link-back {
|
|
|
|
background: $brand-main-blue-dark;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: lighten($brand-main-blue-dark, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|