Add feed/download toolbar to author and collection indexes

This commit is contained in:
Alex Cabal 2022-07-12 10:18:20 -05:00
parent 4268c6f91c
commit dc0e873577
14 changed files with 151 additions and 43 deletions

View file

@ -2352,13 +2352,43 @@ h1.is-collection{
margin-bottom: 1rem;
}
.download-collection{
.ebooks-toolbar{
display: flex;
justify-content: center;
justify-content: flex-end;
margin-bottom: 4rem;
border-bottom: 1px dashed var(--sub-text);
padding-bottom: 1rem;
font-style: italic;
gap: 1rem;
}
.ebooks-toolbar a{
padding: .5rem 1rem;
padding-left: .75rem;
text-decoration: none;
}
.ebooks-toolbar a.button{
/*font-family: "Crimson Pro", Georgia, serif;*/
font-size: .75rem;
display: inline-flex;
gap: .75rem;
align-items: center;
font-weight: bold;
}
.ebooks-toolbar a.button::before{
font-family: "Fork Awesome";
display: inline-block;
font-size: 1rem;
}
.ebooks-toolbar a.button[href*="/downloads"]::before{
content: "\f019";
}
.ebooks-toolbar a.button[href*="/feeds"]::before{
content: "\f143";
}
abbr.acronym{
@ -3099,6 +3129,15 @@ ul.feed p{
white-space: normal;
margin: 0 10px;
}
.ebooks-toolbar{
}
.ebooks-toolbar a.button{
font-size: 0;
gap: 0;
padding: .5rem .75rem;
}
}
@media(max-width: 680px){