mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-02-14 21:10:41 +01:00
29 lines
444 B
SCSS
29 lines
444 B
SCSS
@import 'variables';
|
|
|
|
.projects {
|
|
margin: auto;
|
|
}
|
|
|
|
.project {
|
|
margin-bottom: $spacer * 4;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
background-color: $brand-grey;
|
|
margin-left: -$spacer;
|
|
margin-right: -$spacer;
|
|
}
|
|
|
|
.project__title {
|
|
margin: 0;
|
|
font-size: $font-size-h2;
|
|
position: absolute;
|
|
bottom: $spacer;
|
|
left: $spacer;
|
|
z-index: 1;
|
|
color: $brand-light;
|
|
}
|
|
|
|
.project__image {
|
|
margin: 0;
|
|
}
|