hugo-theme-almeida/assets/scss/components/_skills.scss
Piotr Bocheński f2321f1627
Move 'assets/sass' -> 'assets/scss'
We don't use SASS so this was misleading.

Signed-off-by: Piotr Bocheński <bochenski.piotr@gmail.com>
2021-06-27 14:14:34 +02:00

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-white;
}
}
& 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-white;
}
}
}
}