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

_contact.scss « components « scss « assets - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f0ad91293cd8c7615825da74ede3bd9aed8ce75 (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
.contact {
    line-height: 2rem;

    &__item {
        position: relative;
        font-size: 1rem;

        & > i {
            background-color: $color-right-col-icon-background;
            color: $color-right-col-icon-primary;
            font-size: 1rem;
            text-align: center;
            border-radius: 50%;
            padding-top: 0.5rem;
            width: 2rem;
            height: 2rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        & > span {
            @include vt-center;
        }
    }
}