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

_main.scss « sass « assets - github.com/Lednerb/bilberry-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee7affc01889f59eef70caf74b2c8f510e16b7ba (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
64
65
66
67
68
.main {
    margin-bottom: 5em;
    min-height: 50vh;

    &:before {
        content: "";
        display: block;
        position: absolute;
        left: 50px;
        bottom: 50px;
        width: 2px;
        height: 100%;
        background: rgba(0, 0, 0, 0.05);
        z-index: 1;
    }

    &:after {
        content: "";
        display: block;
        position: absolute;
        left: 41px;
        bottom: 32px;
        height: 20px;
        width: 20px;
        background: #ddd;
        border-radius: 999px;
        z-index: 10;
    }

    .article-wrapper {
        display: flex;
        justify-content: flex-end;
        padding-top: 50px;
        min-height: 90px;
        position: relative;

        // Move the left circle all the way down to the end of the article-wrapper
        &.single {
            padding-bottom: 2.5em;
        }

        .bubble {
            position: absolute;
            left: 25px;
            top: 70px;
            background-color: $bubble-background-color;
            border: 3px solid $bubble-color;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 10;
            text-decoration: none;
            color: $bubble-color;
            transition: all 0.3s ease-in-out;

            .fa {
                font-size: 15pt;
            }

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