You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nostrweb/src/cards.css

32 lines
579 B
CSS

/* https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Media_objects */
.mbox {
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
margin-bottom: 1rem;
}
.mbox .mbox-img {
align-self: center;
flex-basis: 4ch;
height: 4ch;
margin-right: 1rem;
max-width: 4ch;
}
.mbox .mbox-header {
flex-basis: calc(100% - 64px - 1rem);
flex-grow: 0;
flex-shrink: 1;
margin-top: 0;
}
.mbox .mbox-body {
color: var(--color-accent);
flex-basis: calc(100% - 64px - 1rem);
flex-grow: 0;
flex-shrink: 1;
max-width: 96ch;
}