mirror of
https://github.com/ineesalmeida/almeida-cv.git
synced 2024-11-23 15:57:58 +00:00
f2321f1627
We don't use SASS so this was misleading. Signed-off-by: Piotr Bocheński <bochenski.piotr@gmail.com>
30 lines
No EOL
605 B
SCSS
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%;
|
|
}
|
|
}
|
|
} |