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.
 

39 lines
803 B

.home-hero {
margin: 20px 20px 40px;
/* background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(12px); */
text-align: center;
}
.avatar-container {
width: 100px;
height: 100px;
margin: 0 auto;
}
.avatar-container .author{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.avatar-container:hover .avatar {
transform: rotate(360deg);
left: 100%;
}
.avatar {
position: relative;
width: 100%;
height: 100%;
border-radius: 50%;
cursor: pointer;
left: 0;
transform-origin: center center;
transition: 0.5s transform ease-in-out, 0.5s left ease-in-out;
}
@media screen and (max-width: 768px) {
.home-hero {
margin: 0;
margin-top: 20px;
}
}