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

3 years ago
.avatar {
height: 200px;
3 years ago
display: flex;
gap: 2em;
3 years ago
}
3 years ago
.avatar h1 {
font-size: 2em;
3 years ago
}
3 years ago
.avatar h4 {
font-weight: normal;
}
.avatar > img {
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
3 years ago
border-radius: 100%;
3 years ago
max-height: 100%;
3 years ago
transition-duration: 0.3s;
}
3 years ago
.avatar > img:hover {
3 years ago
transition-duration: 0.3s;
transform: scale(1.1) rotate(-20deg);
3 years ago
}