hugo-theme-almeida/assets/scss/components/_skills.scss

35 lines
724 B
SCSS
Raw Normal View History

2020-08-16 12:21:35 +00:00
.skills {
&__group {
& span {
font-weight: 700;
display: inline-block;
&::after{
content: ":"
}
&:hover ~ li {
background-color: $color-primary;
color: $color-light;
2020-08-16 12:21:35 +00:00
}
}
& 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;
2020-08-16 12:21:35 +00:00
}
}
}
}