mirror of
https://github.com/ineesalmeida/almeida-cv.git
synced 2024-11-23 07:47:55 +00:00
46 lines
970 B
SCSS
46 lines
970 B
SCSS
.content {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
|
|
&__left {
|
|
float: left;
|
|
width: $width-left-col;
|
|
height: 100%;
|
|
padding: 3rem 4rem;
|
|
|
|
@media screen {
|
|
&::after {
|
|
content: '2020 © by Inês Almeida | ines-almeida.com';
|
|
height: 4rem;
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0.5rem;
|
|
color: darken($color-light, 10%);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__right {
|
|
position: absolute;
|
|
float: right;
|
|
width: $width-right-col;
|
|
background-color: $color-right-col-background;
|
|
color: $color-right-col-body-text;
|
|
height: 100%;
|
|
padding: 2rem 3rem;
|
|
right: 1rem;
|
|
|
|
@include shadow(0.5);
|
|
}
|
|
|
|
&__swapped {
|
|
&__left {
|
|
float: right;
|
|
}
|
|
|
|
&__right {
|
|
float: left;
|
|
left: 1rem;
|
|
}
|
|
}
|
|
}
|