diff --git a/extensions/gallery/script.py b/extensions/gallery/script.py index 68e2c1a3..a1ec5481 100644 --- a/extensions/gallery/script.py +++ b/extensions/gallery/script.py @@ -7,49 +7,52 @@ from modules.html_generator import image_to_base64 def generate_html(): css = """ - .character-gallery table { - border-collapse: collapse; - table-layout: fixed; - width: 100%; - } + .character-gallery { + margin: 1rem 0; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); + grid-column-gap: 0.4rem; + grid-row-gap: 1.2rem; + } - .character-gallery th, .character-gallery td { - padding: 8px; - } + .character-container { + cursor: pointer; + text-align: center; + position: relative; + opacity: 0.75; + } - .character-gallery img { - width: 150px; - height: 200px; - object-fit: cover; - } + .character-container:hover { + opacity: 1; + } - .character-gallery .placeholder { - width: 150px; - height: 200px; - background-color: gray; - } - - .character-gallery tr { - cursor: pointer; - } - - .character-gallery .image-td { - width: 150px; - } - - .character-gallery .character-td { - text-align: center !important; - } + .character-container .placeholder, .character-container img { + width: 150px; + height: 200px; + background-color: gray; + object-fit: cover; + margin: 0 auto; + border-radius: 1rem; + border: 3px solid white; + box-shadow: 5px 5px 2px 0px rgb(0 0 0 / 50%); + } + .character-name { + margin-top: 0.2rem; + display: block; + font-size: 1.2rem; + font-weight: 600; + overflow-wrap: anywhere; + } """ - table_html = f'
{image_html} | {character} | ' - table_html += "