Update Downloads spacing

This commit is contained in:
kaBeech
2023-09-03 19:34:20 -07:00
parent df9820dc24
commit db8ed5c059
2 changed files with 11 additions and 1 deletions

View File

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

View File

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