More actions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 75: | Line 75: | ||
.card-description .read-more { | .card-description .read-more { | ||
font-size: 0.75em; | font-size: 0.75em; | ||
text-align: right; | |||
display: block; | display: block; | ||
margin-top: 0.25rem; | margin-top: 0.25rem; |
Revision as of 02:01, 25 May 2025
/* CSS placed here will be applied to all skins */ .card-carousel { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: flex-start; /* critical: lets tall cards grow down, not squish */ overflow-x: auto; gap: 1rem; padding: 1rem; } .card-carousel::-webkit-scrollbar { height: 6px; } .card-carousel::-webkit-scrollbar-thumb { background: #999; border-radius: 3px; } .card { display: flex; flex-direction: column; align-items: center; width: 200px; height: 320px; /* uniform height */ background: #fff; border: 1px solid #ccc; border-radius: 6px; overflow: hidden; padding: 0; margin: 0; } .image-wrapper { max-height: 140px; /* allows room for text below */ flex-shrink: 1; /* allow it to shrink when space is tight */ display: flex; align-items: center; justify-content: center; overflow: hidden; } .image-wrapper img { max-width: 100%; max-height: 100%; height: auto; width: auto; display: block; } .card-carousel .card .card-description { color: #444; margin-top: 0.5rem; text-align: left; padding: 0 0.5rem; white-space: normal; overflow-wrap: anywhere; word-break: break-word; width: 100%; box-sizing: border-box; flex-grow: 1; overflow: visible; } .card-description .snippet-text { font-size: 0.75em; display: -webkit-box; -webkit-line-clamp: 4; /* adjust lines as needed */ -webkit-box-orient: vertical; overflow: hidden; display: -moz-box; /* legacy Firefox support */ } .card-description .read-more { font-size: 0.75em; text-align: right; display: block; margin-top: 0.25rem; font-weight: bold; color: #007acc; } .card-description * { white-space: normal !important; overflow-wrap: anywhere !important; word-break: break-word !important; } .no-display { display: none; }