45 lines
No EOL
810 B
CSS
45 lines
No EOL
810 B
CSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
background-color: #f7f7f7;
|
|
background-color: var(--background-alt);
|
|
padding: 0 10px 0;
|
|
margin: 1em 0;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.user {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(3em, 3em));
|
|
grid-template-rows: repeat(2, 1.5em);
|
|
}
|
|
|
|
.avatar {
|
|
grid-column: 1;
|
|
grid-row: 1/3;
|
|
border-radius: 5px;
|
|
object-fit: cover;
|
|
width: 3em;
|
|
max-height: 3em;
|
|
}
|
|
|
|
.title {
|
|
grid-column: 2/-1;
|
|
grid-row: 1;
|
|
padding-left: 10px;
|
|
color: var(--text-bright);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.acct {
|
|
grid-column: 2/-1;
|
|
grid-row: 2;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.note {
|
|
padding-inline: 2rem;
|
|
background-color: var(--background-body)
|
|
} |