diff --git a/content/art/_index.md b/content/art/_index.md index 548132d..f082bf5 100644 --- a/content/art/_index.md +++ b/content/art/_index.md @@ -7,15 +7,15 @@ commissions: true aliases: - /gallery featured: -- filename: bringontheketchup.webp - date: 2023-11-26 - title: Bring on the ketchup! -- filename: newsakura.webp - date: 2023-09-24 - title: new sakura -- filename: mel.webp - date: 2023-07-02 - title: burger time +- filename: raubahn.webp + date: 2024-01-26 + title: Bull of Ala Mhigo +- filename: electrical.webp + date: 2024-01-26 + title: Electrical +- filename: moonlight.webp + date: 2023-11-29 + title: Moonlight years: - 2024 - 2023 diff --git a/data/art-config.json b/data/art-config.json index 9cccdfc..7fd6ef1 100644 --- a/data/art-config.json +++ b/data/art-config.json @@ -1,9 +1,9 @@ { "commissions": true, "featured": [ - "bringontheketchup", - "newsakura", - "mel" + "raubahn", + "electrical", + "moonlight" ], "new-banner": "" } diff --git a/data/recent-changes.json b/data/recent-changes.json index c5b893d..9aceb33 100644 --- a/data/recent-changes.json +++ b/data/recent-changes.json @@ -1,5 +1,6 @@ { "changes": [ + "2024-01-27: Added new artwork!", "2023-09-24: Added new Sakura artwork, changed profile pic.", "2023-09-21: Added some more art to the gallery!", "2023-07-02: Added recent Art Fight attacks, and Guest Art pages.", diff --git a/resources/_gen/images/electrical_hu655d8b295e0a1988ad0f62843276d0f1_165130_500x0_resize_q75_h2_box_2.webp b/resources/_gen/images/electrical_hu655d8b295e0a1988ad0f62843276d0f1_165130_500x0_resize_q75_h2_box_2.webp new file mode 100644 index 0000000..f411371 Binary files /dev/null and b/resources/_gen/images/electrical_hu655d8b295e0a1988ad0f62843276d0f1_165130_500x0_resize_q75_h2_box_2.webp differ diff --git a/resources/_gen/images/moonlight_hu314f23646d4da68fc55acc74782443d9_188174_500x0_resize_q75_h2_box_2.webp b/resources/_gen/images/moonlight_hu314f23646d4da68fc55acc74782443d9_188174_500x0_resize_q75_h2_box_2.webp new file mode 100644 index 0000000..12da6dc Binary files /dev/null and b/resources/_gen/images/moonlight_hu314f23646d4da68fc55acc74782443d9_188174_500x0_resize_q75_h2_box_2.webp differ diff --git a/resources/_gen/images/raubahn_hu461e8b9034876530217961b6fe20585c_106656_500x0_resize_q75_h2_box_2.webp b/resources/_gen/images/raubahn_hu461e8b9034876530217961b6fe20585c_106656_500x0_resize_q75_h2_box_2.webp new file mode 100644 index 0000000..53515d2 Binary files /dev/null and b/resources/_gen/images/raubahn_hu461e8b9034876530217961b6fe20585c_106656_500x0_resize_q75_h2_box_2.webp differ diff --git a/themes/red/assets/css/site.css b/themes/red/assets/css/site.css index 1f199c4..98ecd63 100644 --- a/themes/red/assets/css/site.css +++ b/themes/red/assets/css/site.css @@ -34,7 +34,8 @@ } .grid-sizer, .grid-item { - width: 32%; + /* Almost pixel perfect! */ + width: calc(33.33% - 7.5px); } .page-pic { @@ -55,11 +56,7 @@ } .gutter-sizer { - width: 1%; -} - -.grid-sizer, .grid-item { - margin-bottom: 1%; + width: 10px; } /* mobile devices */ @@ -467,6 +464,7 @@ pre { display: flex; flex-flow: row; gap: 10px; + margin-bottom: 10px; } .art-button { diff --git a/themes/red/assets/js/gallery.js b/themes/red/assets/js/gallery.js index b86d597..2317ec1 100644 --- a/themes/red/assets/js/gallery.js +++ b/themes/red/assets/js/gallery.js @@ -2,7 +2,7 @@ imagesLoaded(document.querySelector('.grid'), function(instance) { new Masonry('.grid', { itemSelector: '.grid-item', columnWidth: '.grid-sizer', - percentPosition: true, + //percentPosition: true, gutter: '.gutter-sizer' }); }); @@ -11,7 +11,7 @@ imagesLoaded(document.querySelector('.second-grid'), function(instance) { new Masonry('.second-grid', { itemSelector: '.grid-item', columnWidth: '.grid-sizer', - percentPosition: true, + //percentPosition: true, gutter: '.gutter-sizer' }); });