Merge pull request #3 from kaBeech/update-webpage

Update webpage
This commit is contained in:
Kyle Beechly
2023-09-03 19:36:50 -07:00
committed by GitHub
2 changed files with 12 additions and 2 deletions

View File

@@ -117,8 +117,8 @@
</div>
</div>
<br />
<h2>Downloads</h2>
<div id="downloads">
<h2 id="downloads">Downloads</h2>
<div>
<div>
<h3>TrueType Format</h3>
<ul>
@@ -154,6 +154,7 @@
</li>
</ul>
</div>
<br class="mobileShow" />
<div>
<h3>OpenType Format</h3>
<ul>
@@ -190,6 +191,7 @@
</ul>
</div>
</div>
<br />
<h3 id="nerdFont">
<a
target="_blank"

View File

@@ -130,6 +130,14 @@ input.serious {
color: #d4d4d4;
}
.mobileShow {
display: none;
@media (max-width: 440px) {
display: block;
}
}
#newExampleTextButton {
width: fit-content;
}