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

43 lines
755 B
CSS

2 years ago
/* 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;
2 years ago
}
.mbox .mbox-img {
align-self: start;
flex-basis: 4ch;
height: 4ch;
2 years ago
margin-right: 1rem;
margin-top: .5ch;
max-width: 4ch;
2 years ago
}
.mbox-body {
color: var(--color-accent);
flex-basis: calc(100% - 64px - 1rem);
flex-grow: 0;
flex-shrink: 1;
max-width: 96ch;
2 years ago
}
.mbox-header {
flex-basis: calc(100% - 64px - 1rem);
flex-grow: 0;
flex-shrink: 1;
margin-top: 0;
}
.mbox-recommend-server .mbox-body {
display: block;
flex-basis: 100%;
font-size: var(--font-small);
}
.mbox-recommend-server .mbox-header {
display: inline;
2 years ago
}