2016-01-14 13:04:44 +01:00
|
|
|
|
|
|
|
.section-difference {
|
2016-01-22 16:03:56 +01:00
|
|
|
|
2016-01-14 13:04:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.difference {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: ($spacer * 2) 0;
|
|
|
|
|
|
|
|
&:first-of-type { padding-top: 0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.difference__icon {
|
|
|
|
flex: 0 0 15%;
|
|
|
|
margin-right: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.difference__text {
|
|
|
|
flex: 0 0 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section-timeline {
|
2016-01-21 12:44:47 +01:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
// background
|
|
|
|
background: url('../img/photo1.jpg') no-repeat center top;
|
|
|
|
background-size: cover;
|
|
|
|
|
|
|
|
// color overlay
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2016-01-22 16:03:56 +01:00
|
|
|
background: linear-gradient(to top left, $brand-main-blue 0%, $brand-main-violet 100%);
|
2016-01-21 12:44:47 +01:00
|
|
|
opacity: .7;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row { z-index: 1 }
|
|
|
|
|
|
|
|
.section-title,
|
2016-01-21 14:34:47 +01:00
|
|
|
.section-description,
|
|
|
|
.timeline {
|
2016-01-21 12:44:47 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
2016-01-21 14:34:47 +01:00
|
|
|
|
|
|
|
.timeline {
|
|
|
|
|
|
|
|
}
|
2016-01-14 13:04:44 +01:00
|
|
|
}
|