117 lines
2.2 KiB
SCSS
117 lines
2.2 KiB
SCSS
/*
|
|
* About Page
|
|
* Styles for the About Page, a simple page outlining some info about me.
|
|
*
|
|
* Dependencies:
|
|
* styles/settings/responsive.scss
|
|
* styles/tools/_flex.scss
|
|
* styles/tools/_responsive.scss
|
|
*
|
|
* Version:
|
|
* 1.0.0 - 2018/06/06
|
|
*/
|
|
.p-about-page {
|
|
&__promo {
|
|
padding: 6em 0;
|
|
background-size: 50%;
|
|
|
|
&-video {
|
|
background-size: cover;
|
|
background-image: url('./../images/banners/homepage/palms.svg');
|
|
}
|
|
|
|
&-platforms {
|
|
background-image: url('./../images/hills-night.svg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
|
|
//Image is a bit bright, so we're going to darken it here
|
|
position: relative;
|
|
|
|
&::before {
|
|
content:"";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
z-index: 0;
|
|
}
|
|
|
|
> .c-page__boundary {
|
|
position: relative;//This is to Z-Index fight the background just a bit.
|
|
}
|
|
}
|
|
|
|
&-programming {
|
|
background-image: url('./../images/patterns/third-dimension-squiggle.svg');
|
|
}
|
|
|
|
|
|
&-work {
|
|
background-image: url('./../images/patterns/lemon-triangle.svg');
|
|
}
|
|
}
|
|
|
|
&__brands {
|
|
@extend %t-flexbox;
|
|
@include t-align-items(stretch);
|
|
@include t-justify-content(space-between);
|
|
@include t-flex-wrap(wrap);
|
|
|
|
&-brand {
|
|
width: 50%;
|
|
}
|
|
|
|
&-image {
|
|
display: block;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 5em;
|
|
max-height: 5em;
|
|
object-fit: contain;
|
|
object-position: center;
|
|
|
|
transition: all 0.2s $s-animation--ease-out;
|
|
}
|
|
|
|
&-link {
|
|
padding: 1em;
|
|
display: block;
|
|
height: 100%;
|
|
|
|
&:hover .p-about-page__brands-image {
|
|
@include t-transform(rotate(10deg));
|
|
}
|
|
}
|
|
|
|
&-title {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
/* Media Queries */
|
|
@include t-media-query($s-xsmall-up) {
|
|
&__brands {
|
|
&-brand {
|
|
width: 25%;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include t-media-query($s-small-up) {
|
|
&__brands {
|
|
&-link {
|
|
padding: 2em;
|
|
}
|
|
|
|
&-image {
|
|
max-width: 7em;
|
|
max-height: 6em;
|
|
}
|
|
}
|
|
}
|
|
}
|