hugo-theme-almeida/assets/scss/components/_skills.scss
2023-01-04 22:22:11 +00:00

38 lines
No EOL
785 B
SCSS

.skills {
&__group {
margin-bottom: 0.8rem;
& span {
font-weight: 700;
display: inline-block;
&::after{
content: ":"
}
&:hover ~ li {
background-color: $color-primary;
color: $color-light;
}
}
& li{
display: inline-block;
font-size: 105%;
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;
}
}
}
}