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.
|
|
|
/* 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: start;
|
|
|
|
flex-basis: 4ch;
|
|
|
|
height: 4ch;
|
|
|
|
margin-right: 1rem;
|
|
|
|
margin-top: .5ch;
|
|
|
|
max-width: 4ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mbox-body {
|
|
|
|
color: var(--color-accent);
|
|
|
|
flex-basis: calc(100% - 64px - 1rem);
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
|
|
|
max-width: 96ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|