diff --git a/explorer.html b/explorer.html index 447e21e..67351e7 100644 --- a/explorer.html +++ b/explorer.html @@ -53,15 +53,15 @@ - + - + - + - +
diff --git a/scripts/explorer.js b/scripts/explorer.js index 6ba64a0..f58a27d 100644 --- a/scripts/explorer.js +++ b/scripts/explorer.js @@ -363,12 +363,12 @@ jQuery(document).ready(function($) return true; splitTag = tag.split(", "); - for (t of splitTag) + for (t of paramTag) { - if (paramTag.includes(t)) - return true; + if (!splitTag.includes(t)) + return false; } - return false; + return true; } function checkPhoto(photo) diff --git a/styles/main.css b/styles/main.css index e9a6ad0..e772af1 100644 --- a/styles/main.css +++ b/styles/main.css @@ -383,14 +383,20 @@ article.explorer .gallery { } article.explorer p.intro { - width:55vw; + width:75vw; margin:auto; margin-bottom:2rem; text-align:justify; } @media only screen and (max-width:1200px) { - article.explorer p { + article.explorer p.intro { + width:90vw; + } +} + +@media only screen and (max-width:1640px) { + article.explorer { width:90vw; } }