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

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

    &__heading {
        width: 100%;
        overflow: hidden;
        text-align: center;
        margin-bottom: 1rem;
    }

    &__title {
        position: relative;

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

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

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

    & li {
        list-style: none;
    }
}