4,554
edits
No edit summary |
No edit summary |
||
Line 221: | Line 221: | ||
/* Mod line */ | /* Mod line */ | ||
.article-mod-line { | .article-mod-line { | ||
white-space: | display: inline-flex; /* lay out pieces in one row */ | ||
flex-wrap: nowrap; /* forbid wrapping */ | |||
gap: 4px; /* spacing between spans */ | |||
align-items: baseline; /* nice vertical alignment */ | |||
white-space: nowrap; | |||
color: grey; | color: grey; | ||
line-height: 1.05; | line-height: 1.05; | ||
font-size: 10px; | font-size: 10px; | ||
letter-spacing: 0.3px; | letter-spacing: 0.3px; | ||
} | } | ||
.article-mod-line span { | .article-mod-line span { | ||
white-space: nowrap; | white-space: nowrap; | ||
} | } | ||