From fca30da591fee203fb5ecf8bef16c26672ec5b64 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 30 Nov 2019 11:50:05 +0000 Subject: [PATCH] For wide screens use a 3 column media timeline --- epicyon-profile.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/epicyon-profile.css b/epicyon-profile.css index 67fccfafb..3de9e3312 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -891,6 +891,15 @@ div.gallery img { } } +@media screen and (min-width: 1500px) { + .galleryContainer { + display: grid; + grid-template-columns: auto auto auto; + grid-column-gap: 5px; + background-color: var(--main-bg-color); + } +} + @media screen and (max-width: 1000px) { body, html { font-size: var(--font-size3);