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

_base.scss « stip « scss « assets - github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65791648d291dacb30ee138eb08b11e34823d0a2 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
html,
body {
    color: $color-foreground;
    margin: 0;    
    padding: 1rem;
}

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

body {
    background-color: $color-background;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

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

h1 {
    font-size: 9rem;
    font-weight: 100;

    @media screen and (max-width: $break-large) {
        font-size: 6rem;
    }
}

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

p {
    font-family: $serif;
    font-weight: 300;
    line-height: 1.7;
}

img.portrait {
    border-radius: 50%;
    border: $portrait-border-width solid $color-foreground;
    width: $portrait-size;
    height: $portrait-size;
}

.portrait-container {
    border-radius: 50%;
    border: 65vw solid $color-circle;
    margin: -63vw;
    height: $portrait-size + 2 * $portrait-border-width;
    width: $portrait-size + 2 * $portrait-border-width;

}