Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_layout.scss « sass « assets - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed3dad8eb43224c31fb3761dfe2ac00da58ef155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.content {
    position: absolute;
    overflow: hidden;

    &__left {
        float: left;
        width: $width-left-col;
        height: 100%;
        padding: 3rem 4rem;

        @media print {
            &::after{
                content: "2020 © by Inês Almeida   |   ines-almeida.com";
                height: 4rem;
                width: 100%;
                position: absolute;
                bottom: 0.5rem;
                color: $color-grey;
            }
        }
    }

    &__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);
    }
}