49 lines
923 B
CSS
49 lines
923 B
CSS
#users {
|
|
display: flex;
|
|
height: auto;
|
|
width: 90%;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.users {
|
|
width: 25vw;
|
|
height: 10vh;
|
|
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
border-radius: 20px;
|
|
margin: 15px;
|
|
transition-duration: 0.5s;
|
|
backdrop-filter: blur(2px);
|
|
box-shadow: 0 0 10px var(--color-2);
|
|
text-decoration: none;
|
|
text-align: right;
|
|
}
|
|
.users:hover {
|
|
transform: scale(1.05);
|
|
filter:brightness(1.15);
|
|
}
|
|
.users img {
|
|
height: 80%;
|
|
border-radius: 15px;
|
|
aspect-ratio: 1 / 1;
|
|
margin: 20px;
|
|
justify-self: left;
|
|
margin-right: auto;
|
|
}
|
|
.user_info {
|
|
width: 60%;
|
|
margin: 12px;
|
|
}
|
|
.user_info h1 {
|
|
font-size: 20px;
|
|
}
|
|
.user_info p {
|
|
font-size: 12px;
|
|
}
|
|
.pages-btn {
|
|
margin: 6px;
|
|
} |