27 lines
432 B
CSS
27 lines
432 B
CSS
.user {
|
|
display: flex;
|
|
gap: 20px;
|
|
align-items: center;
|
|
border: 1px solid var(--fg);
|
|
width: fit-content;
|
|
max-width: 100%;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.user img {
|
|
height: 80px;
|
|
max-width: 300px;
|
|
}
|
|
|
|
a.user {
|
|
text-decoration: none;
|
|
color: var(--fg);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
a.user:hover {
|
|
opacity: 1;
|
|
transform: scale(1.05);
|
|
border-color: var(--accent);
|
|
} |