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.
21 lines
321 B
CSS
21 lines
321 B
CSS
2 years ago
|
/* https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Media_objects */
|
||
|
.mbox {
|
||
|
display: flex;
|
||
|
align-items: flex-start;
|
||
|
}
|
||
|
|
||
|
.mbox .mbox-img {
|
||
|
width: 64px;
|
||
|
height: 64px;
|
||
|
margin-right: 1rem;
|
||
|
}
|
||
|
|
||
|
.mbox .mbox-body {
|
||
|
flex: 1;
|
||
|
color: var(--fgcolor-accent);
|
||
|
}
|
||
|
|
||
|
.mbox-body > .header {
|
||
|
margin-top: 0;
|
||
|
}
|