Compare commits
2 Commits
1075833562
...
c53c6d50aa
| Author | SHA1 | Date | |
|---|---|---|---|
|
c53c6d50aa
|
|||
|
c4d94bb019
|
@@ -732,6 +732,11 @@ fieldset > table td input[type="radio"] {
|
|||||||
}
|
}
|
||||||
nav.episodes {
|
nav.episodes {
|
||||||
color: var(--background-primary);
|
color: var(--background-primary);
|
||||||
|
font-size: 0.9em;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-around;
|
||||||
|
max-width: 100vw;
|
||||||
}
|
}
|
||||||
nav.episodes span {
|
nav.episodes span {
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
@@ -749,13 +754,15 @@ nav.episodes span:nth-child(n+3) {
|
|||||||
}
|
}
|
||||||
nav.episodes span.no-link,
|
nav.episodes span.no-link,
|
||||||
nav.episodes span a {
|
nav.episodes span a {
|
||||||
padding: 0.5rem;
|
padding: 0.17em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
min-width: 5.5rem;
|
min-width: 4.4em;
|
||||||
|
min-height: 1.5em;
|
||||||
}
|
}
|
||||||
nav.episodes object {
|
nav.episodes img {
|
||||||
margin: 0 0.2rem;
|
margin: 0 0.2rem;
|
||||||
heigth: 0.85rem;
|
height: 0.85em;
|
||||||
|
max-width: 13px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
@media (min-width: 600px) {
|
@media (min-width: 600px) {
|
||||||
@@ -854,6 +861,9 @@ nav.episodes object {
|
|||||||
#host {
|
#host {
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
|
nav.episodes {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 900px) {
|
@media (min-width: 900px) {
|
||||||
#podcast_lane > .lane,
|
#podcast_lane > .lane,
|
||||||
|
|||||||
@@ -117,16 +117,16 @@
|
|||||||
<!--% IF folder %-->
|
<!--% IF folder %-->
|
||||||
<!--% folder = folder %--><!--% ELSE %--><!--% folder = "hpr" %-->
|
<!--% folder = folder %--><!--% ELSE %--><!--% folder = "hpr" %-->
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
<nav class="episodes"><span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.earliest) %-->/index.html" rel="first"><object href="/images/icons/arrow-first-plain.svg"><<</object>First</a></span>,
|
<nav class="episodes" aria-description="Navigation to other episodes"><span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.earliest) %-->/index.html" rel="first" aria-label="first episode"><img src="/images/icons/arrow-first-plain.svg" alt="<<">First</a></span>,
|
||||||
<!--% IF links.previous %-->
|
<!--% IF links.previous %-->
|
||||||
<span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.previous) %-->/index.html" rel="previous"><object href="/images/icons/arrow-previous-plain.svg"><</object>Previous</a></span>,
|
<span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.previous) %-->/index.html" rel="previous" aria-label="previous episode"><img src="/images/icons/arrow-previous-plain.svg" alt="<">Previous</a></span>,
|
||||||
<!--% ELSE %-->
|
<!--% ELSE %-->
|
||||||
<span class="no-link"><object href="/images/icons/arrow-previous-plain.svg"><</object>Previous</span>,
|
<span class="no-link"><img src="/images/icons/arrow-previous-plain.svg" alt="<">Previous</span>,
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
<!--% IF links.next %-->
|
<!--% IF links.next %-->
|
||||||
<span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.next) %-->/index.html" rel="next">Next<object href="/images/icons/arrow-next-plain.svg">></object></a></span>,
|
<span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.next) %-->/index.html" rel="next" aria-label="next episode">Next<img src="/images/icons/arrow-next-plain.svg" alt=">"></a></span>,
|
||||||
<!--% ELSE %-->
|
<!--% ELSE %-->
|
||||||
<span class="no-link">Next<object href="/images/icons/arrow-next-plain.svg">></object></span>,
|
<span class="no-link">Next<img src="/images/icons/arrow-next-plain.svg" alt=">"></span>,
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
<span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.latest) %-->/index.html" rel="last">Latest<object href="/images/icons/arrow-last-plain.svg">>></object></a></span></nav>
|
<span><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.latest) %-->/index.html" rel="last" aria-label="latest episode">Latest<img src="/images/icons/arrow-last-plain.svg" alt=">>"></a></span></nav>
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
|
|||||||
Reference in New Issue
Block a user