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

_side_section.scss « components « scss « assets - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7a9b26d32c3533bc8ddc41027e856bcdc3cc642 (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
.sideSection {
    display: block;
    margin-bottom: 3rem;
    @include avoid-break;

    &__heading {
        width: 100%;
        overflow: hidden;
        text-align: center;
        margin-bottom: 1rem;
        color: $color-right-col-heading-text;
    }

    &__title {
        position: relative;

        &::after,
        &::before {
            content: '';
            position: absolute;
            border-top: 1px solid $color-right-col-heading-text;
            border-bottom: 1px solid $color-right-col-heading-text;
            width: 10rem;
            height: 4px;
            margin-top: 1.1rem;
        }

        &::after {
            margin-left: 1rem;
        }

        &::before {
            margin-left: -11rem;
        }
    }

    & li {
        list-style: none;
    }
}