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

_layout.scss « stip « scss « assets - github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab360bf061196809864baddcd0eeedffe512fae2 (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
main {
    display: flex;
    flex-direction: row;

    @media screen and (max-width: $break-large) {
        flex-direction: column;
    }
}

.content {
    margin-left: 1rem;
    max-width: 50vw;

    @media screen and (max-width: $break-large) {
        margin-left: 0;
        max-width: 100vw;
    }

    .links {
        margin-top: 2.5rem;
        font-size: 1.5rem;

        a {
            margin-right: 0.5rem;
            text-decoration: none;
        }
    }
}

.footer {
    margin-top: 3rem;
    font-size: 0.75rem;
}