mirror of
https://git.solarpunk.moe/Fries/fries-website.git
synced 2024-11-14 00:22:20 +00:00
use p instead of h2 for the webring text
and unbreak up the paragraphs in the a tags as this makes it act as seperate links.
This commit is contained in:
parent
3b954de4b8
commit
7fb384451e
1 changed files with 8 additions and 6 deletions
|
@ -1,13 +1,10 @@
|
|||
<section class="webring-box" aria-label="the solarpunk.moe webring">
|
||||
<a id="previous" href={`${api_url}/previous?source_url=${site_url}`}>
|
||||
<p class="no-margin">←</p>
|
||||
<p class="no-margin" id="previous-text">Previous</p>
|
||||
<p class="no-margin">←<br><span id="previous-text">Previous</span></p>
|
||||
</a>
|
||||
<h2 class="no-margin">solarpunk.moe</h2>
|
||||
<h2 class="no-margin">webring</h2>
|
||||
<p class="no-margin bigger-font">solarpunk.moe<br>webring</p>
|
||||
<a id="next" href={`${api_url}/next?source_url=${site_url}`}>
|
||||
<p class="no-margin" id="next-text">Next</p>
|
||||
<p class="no-margin">→</p>
|
||||
<p class="no-margin"><span id="next-text">Next</span><br>→</p>
|
||||
</a>
|
||||
</section>
|
||||
|
||||
|
@ -19,6 +16,11 @@
|
|||
.no-margin {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.bigger-font {
|
||||
font-size: 2.825rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script lang="ts">
|
||||
|
|
Loading…
Reference in a new issue