Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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: stretch; width: 200px; height: 320px; background: #fff; border: 1px solid #ccc; border-radius: 6px; overflow: hidden; padding: 0; } .image-wrapper { min-height: 50px; /* Minimum image height */ max-height: 140px; /* Preferred max */ flex-shrink: 1; /* Allows shrinking */ overflow: hidden; display: flex; align-items: center; justify-content: center; } .image-wrapper img { max-height: 100%; max-width: 100%; height: auto; width: auto; display: block; } .card-description { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 0.5rem; font-size: 0.7em; color: #444; text-align: left; box-sizing: border-box; overflow: hidden; } .snippet-text { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; /* No line clamp — we let flex do the work! */ } .read-more { margin-top: 0.5rem; color: #007acc; font-weight: bold; flex-shrink: 0; } .card-description * { white-space: normal !important; overflow-wrap: anywhere !important; word-break: break-word !important; } .no-display { display: none; }