You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
381 B
25 lines
381 B
.avatar {
|
|
height: 200px;
|
|
display: flex;
|
|
gap: 2em;
|
|
}
|
|
|
|
.avatar h1 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.avatar h4 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.avatar > img {
|
|
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
|
|
border-radius: 100%;
|
|
max-height: 100%;
|
|
transition-duration: 0.3s;
|
|
}
|
|
|
|
.avatar > img:hover {
|
|
transition-duration: 0.3s;
|
|
transform: scale(1.1) rotate(-20deg);
|
|
} |