Skip to content

Commit

Permalink
hide trash by neatly sorting it in a drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
warm-coolguy committed Jul 18, 2024
1 parent eddaea0 commit c6b1e5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>
</h1>
<nav>
<!-- has a point -->
<a href="./circle">🗑️circle</a>
<a href="./circle" class="hidden">🗑️circle</a>
<!-- text heap -->
<a href="./dokument" lang="de">📄Dokument</a>
<!-- 🐀 -->
Expand Down
4 changes: 4 additions & 0 deletions pages/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ p {
margin-bottom: .6em;
}

.hidden {
visibility: hidden;
}

@media only screen and (max-width: 680px) {
body { font-size: 16px; }
}
Expand Down

0 comments on commit c6b1e5f

Please sign in to comment.