1/* =Gallery Plugin 2----------------------------------------------- */ 3 4div.plugin-gallery { 5 div.gallery-page { 6 gap: 25px; 7 width: 100%; 8 9 figure { 10 border-radius: 20px; 11 padding: 0px; 12 border: 6px solid @ini_text_alt; 13 transition: all 0.5s ease; 14 background: @ini_border; 15 width: 160px; 16 height: 160px; 17 18 a { 19 width: 160px; 20 height: 160px; 21 transition: inherit; 22 23 img { 24 border-radius: 15px; 25 width: 160px; 26 height: 160px; 27 object-fit: contain; 28 transition: inherit; 29 } 30 } 31 } 32 figure:hover { 33 border-color: @ini_theme_color; 34 } 35 } 36} 37