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

_single-blog-post.scss « components « scss « assets - github.com/StaticMania/portio-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cdd10eed1ca173c91f0dcb60725a02cd1260aac (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
69
70
71
72
73
74
75
76
.section {
    @include desktop {
        padding: 50px 0;
    }
    .svg-img {
        position: absolute;
        top: 30%;
        left: -7%;
        animation: move_top 5s infinite linear;
        @include desktop {
            display: none;
        }
    }
    .animate-shape {
        position: absolute;
        top: 29%;
        right: 4%;
        height: 300px;
        width: 300px;
        svg {
            width: 100%;
        }
        @include desktop {
            display: none;
        }
    }
    .animate-pattern {
        position: absolute;
        top: 46%;
        right: 12%;
        height: 100px;
        width: 100px;
        animation: move_top 3s infinite linear;
        img {
            height: 100%;
            width: 100%;
        }
        @include desktop {
            display: none;
        }
    }
    .singleBlog {
        &__feature {
            margin: 0 100px;
            @include desktop {
                margin: 0;
            }
            img {
                height: 100%;
                width: 100%;
                border-radius: 20px;
            }
        }
        &__content {
            margin: 0 200px 0 200px;
            @include desktop {
                margin: 0;
            }
            .blog-section {
                margin-bottom: 60px;
                img {
                    float: right;
                    mask: url("../images/hero/hero-mask-svg.png");
                    -webkit-mask-repeat: no-repeat;
                    -webkit-mask-size: contain;
                    -webkit-mask-position: center center;
                    @include tablet {
                        width: 100%;
                        float: none;
                        margin-bottom: 40px;
                    }
                }
            }
        }
    }
}