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

_layout.scss « hallo « scss « assets - github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb28c1cdaeee2ce48284df76346086383e2e2540 (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
35
36
37
38
39
40
.column {
    flex: 1;
}

main {
    display: flex;
    margin-top: 20vh;

    .column.left {
        text-align: end;
    }

    .column.right {
        h1 {
            margin-left: -10px; /* Correction for margin of leftmost character. */
            margin-bottom: 0.4em;
        }

        h2 {
            margin-left: -4px; /* Correction for margin of leftmost character. */
            margin-top: 0;
        }
        
        .links {
            margin-top: 2.5rem;
            font-size: 1.5rem;

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

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