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

_skills.scss « components « scss « assets - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c117ae70725e5e449ba0af81838a4ead5ccad8d (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
.skills {
    &__group {
        & span {
            font-weight: 700;
            display: inline-block;

            &::after{
                content: ":"
            }

            &:hover ~ li {
                background-color: $color-primary;
                color: $color-light;
            }

        }

        & li{
            display: inline-block;
            font-weight: 400;
            transition: all 0.2s ease-in-out;
            padding: 0 1px;
            border-radius: 2px;

            &:not(:last-child)::after{
                content: ", "
            }

            &:hover {
                background-color: $color-primary;
                color: $color-light;
            }
        }
    }
}