move smallweb subway to the sidebar

This commit is contained in:
jonathan
2023-11-17 10:31:05 +10:30
parent cca401fbc4
commit 35c6df657e
2 changed files with 11 additions and 4 deletions

View File

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

View File

@ -61,17 +61,24 @@ h5 {
/* Format links */
a,
a:visited {
a:visited,
.smallweb-subway {
color: var(--accent);
display: inline-block;
transition: transform .07s ease-out;
}
a:hover {
a:hover,
.smallweb-subway:hover {
text-decoration: none;
transform: translate(0px, -2px);
}
.smallweb-subway {
text-decoration: underline;
cursor: pointer;
}
hr {
border-top: 2px solid var(--border);
}