Compare commits

..

No commits in common. "1d122bc4c5cec67b707baba25d8f0ec068ffb9b9" and "0ff0ea3a246035e619fdcbaba57612b55681fc0c" have entirely different histories.

2 changed files with 5 additions and 4 deletions

View file

@ -37,21 +37,21 @@ video {
scroll-margin-top: 60px; scroll-margin-top: 60px;
} }
@media only screen and (max-width: 619px) @media only screen and (max-width: 600px)
{ {
.gallery { .gallery {
display: grid; display: grid;
grid-gap: 3px; grid-gap: 3px;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
} }
} }
@media only screen and (min-width: 620px) and (max-width: 1199px) @media only screen and (min-width: 600px)
{ {
.gallery { .gallery {
display: grid; display: grid;
grid-gap: 5px; grid-gap: 5px;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
} }
} }

View file

@ -230,6 +230,7 @@ document.addEventListener('DOMContentLoaded', () => {
<img src="{{ url_for('thumb_route', thumb_file=thumbnail) }}" alt="{{ thumbnail }}"> <img src="{{ url_for('thumb_route', thumb_file=thumbnail) }}" alt="{{ thumbnail }}">
<div class="overlay"> <div class="overlay">
<div class="overlay-content"> <div class="overlay-content">
<h3>Play</h3>
<p>{{ thumbnail[:-4] }}</p> <p>{{ thumbnail[:-4] }}</p>
</div> </div>
</div> </div>