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

_experience.scss « components « sass « assets - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8071cecadf390383e1f4ad52cf01880b1a7e3444 (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
77
78
79
80
81
82
83
84
85
86
87
88
.experience {
    &__item {
        display: block;
        @include avoid-break;
        &:not(:first-child) {
            padding-top: 1.5rem;
        }
    }

    &__header,
    &__subheader {
        display: block;
        width: 100%;
        height: 2.4rem;
    }

    &__job {
        position: relative;
        transition: transform 0.2s cubic-bezier($cubic);

        &:hover {
            transform: translateX(0.5rem);
        }
    }

    &__company,
    &__position {
        text-align: left;
        width: 70%;
        float: left;
    }

    &__company {
        color: $color-grey-dark;
    }

    &__position {
        text-transform: uppercase;
        font-size: 1.3rem;
        color: $color-grey-dark;
    }

    &__date,
    &__place {
        float: right;
        text-align: right;
        width: 30%;
        color: $color-secondary;
    }

    &__date {
        font-weight: 400;
    }

    &__place {
        &::before {
            font-family: 'Material Icons';
            color: $color-primary;
            font-size: 1.4rem;
            content: 'place';
            display: inline-block;
            padding-right: 3px;
            vertical-align: middle;
            font-weight: 900;
        }
    }

    &__bullet {
        list-style-position: inside;
    }

    &__badges {
        display: block;
        text-align: right;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    &__badge {
        font-size: 0.9rem;
        font-weight: 400;
        display: inline-block;
        background-color: $color-primary;
        color: $color-primary-text;
        border-radius: 1rem;
        padding: 0.1rem 0.6rem;
    }
}