Add support for series navigation links
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
@@ -330,6 +330,45 @@ figure {
|
||||
}
|
||||
}
|
||||
|
||||
#SeriesNavigation {
|
||||
margin-top: 1em;
|
||||
display: flex;
|
||||
|
||||
.wrapper {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
|
||||
&.previous {
|
||||
justify-content: left;
|
||||
}
|
||||
|
||||
&.next {
|
||||
justify-content: right;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
@include bordered-block;
|
||||
padding: 0.5em 1em 0.5em 1em;
|
||||
font-size: 1.1em;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.feather {
|
||||
height: 1.25em;
|
||||
width: 1.25em;
|
||||
fill: none;
|
||||
&:first-child { margin-right: 0.5em; }
|
||||
&:last-child { margin-left: 0.5em; }
|
||||
}
|
||||
}
|
||||
|
||||
div.title {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.series-status {
|
||||
&.suspended { --status-color: #f9b005; }
|
||||
&.complete { --status-color: #3dc60b; }
|
||||
|
||||
Reference in New Issue
Block a user