turn the smallweb links back into buttons

This commit is contained in:
jonathan
2023-11-17 10:37:54 +10:30
parent 35c6df657e
commit cb8a36e4f4
2 changed files with 9 additions and 3 deletions

View File

@ -8,9 +8,9 @@
<a href="/blog/">/blog</a>
<a href="/lists/">/lists</a>
<span>
<a class="smallweb-subway" onclick="goToPrev()">&lt;==</a>
<button class="smallweb-subway" onclick="goToPrev()">&lt;==</button>
smallweb subway
<a class="smallweb-subway" onclick="goToNext()">==&gt;</a>
<button class="smallweb-subway" onclick="goToNext()">==&gt;</button>
</span>
{# <span>
<a href="https://hotlinewebring.club/uuupah/previous">&lt;==</a>

View File

@ -76,7 +76,13 @@ a:hover,
.smallweb-subway {
text-decoration: underline;
cursor: pointer;
cursor: pointer;
background: none!important;
border: none;
padding: 0!important;
/*optional*/
font-family: inherit;
/*input has OS specific font-family*/
}
hr {