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; justify-content: space-between; width: 200px; height: 320px; background: #fff; border: 1px solid #ccc; border-radius: 6px; overflow: hidden; padding: 0; margin: 0; box-sizing: border-box; } .image-wrapper { flex: 0 1 auto; /* Allow image to shrink */ min-height: 50px; max-height: 140px; 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; } .name { font-weight: bold; margin: 0.5rem 0; text-align: center; } .card-description { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; padding: 0 0.75rem 0.5rem; box-sizing: border-box; overflow: hidden; text-align: left; } .snippet-text { font-size: 0.65em; line-height: 1.2; color: #444; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 6; /* Adjust to balance image size vs text */ } .read-more { font-size: 0.6em; font-weight: bold; color: #007acc; text-align: left; padding-top: 0.4rem; flex-shrink: 0; } .no-display { display: none; }