2020-08-16 12:21:35 +00:00
|
|
|
.skills {
|
|
|
|
&__group {
|
2023-01-04 22:22:11 +00:00
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
|
2020-08-16 12:21:35 +00:00
|
|
|
& span {
|
|
|
|
font-weight: 700;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
&::after{
|
|
|
|
content: ":"
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover ~ li {
|
|
|
|
background-color: $color-primary;
|
2021-08-08 12:29:08 +00:00
|
|
|
color: $color-light;
|
2020-08-16 12:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
& li{
|
|
|
|
display: inline-block;
|
2023-01-04 22:22:11 +00:00
|
|
|
font-size: 105%;
|
2020-08-16 12:21:35 +00:00
|
|
|
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;
|
2021-08-08 12:29:08 +00:00
|
|
|
color: $color-light;
|
2020-08-16 12:21:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|