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

_base.scss « hallo « scss « assets - github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dea8c5247aeacf436cbc9ce04dca3ef159d12d0 (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
41
42
43
44
45
46
html,
body {
    color: $default-light;
    margin: 1rem;
    padding: 0;
}

html {
    font-family: $sans-serif;
    font-size: 16px;
    overflow-y: auto;

    @media (min-width: 600px) {
        font-size: 18px;
    }
}

body {
    background-color: $background-1;
}

a {
    @include transition(color .2s ease-out);    
    color: $default-light;

    &:hover {
        color: $default-dark;
    }
}

h1 {
    font-size: 9rem;
}

h2 {
    font-size: 3rem;
    font-weight: normal;
}

img.portrait {
    border-radius: 50%;
    border: 10px solid $default-light;
    margin: 2em 3em;
    width: 300px;
    height: 300px;
}