mirror of
https://github.com/ineesalmeida/almeida-cv.git
synced 2024-11-23 15:57:58 +00:00
35 lines
No EOL
724 B
SCSS
35 lines
No EOL
724 B
SCSS
.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;
|
|
}
|
|
}
|
|
}
|
|
} |