hugo-theme-almeida/assets/scss/components/_avatar.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

30 lines
No EOL
605 B
SCSS

.avatar {
width: 100%;
height: $width-right-col - 6rem;
position: relative;
overflow: hidden;
&__container {
@include hz-center;
width: 100%;
clip-path: circle(50% at 50% 56%);
height: $width-right-col - 8rem;
text-align: center;
transition: all 0.3s cubic-bezier($cubic);
&:hover {
width: 110%;
}
}
&__img {
object-fit: cover;
width: 110%;
transition: all 0.3s cubic-bezier($cubic);
@include all-center;
&:hover {
width: 105%;
}
}
}