Le framework HUGO utilisé pour créer son CV en 2 minutes
https://cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
759 B
34 lines
759 B
.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-white, 10%);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__right {
|
|
position: absolute;
|
|
float: right;
|
|
width: $width-right-col;
|
|
background-color: $color-right-col;
|
|
height: 100%;
|
|
padding: 2rem 3rem;
|
|
right: 1rem;
|
|
|
|
@include shadow(0.5);
|
|
}
|
|
}
|
|
|