mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 12:20:12 +01:00
34 lines
393 B
SCSS
34 lines
393 B
SCSS
|
#post-nav {
|
||
|
width: 100%;
|
||
|
display: inline-block;
|
||
|
@extend %padding-nav;
|
||
|
|
||
|
a {
|
||
|
width: 100%;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
@extend .meta;
|
||
|
}
|
||
|
|
||
|
#previous-post {
|
||
|
float: left;
|
||
|
width: 50%;
|
||
|
}
|
||
|
|
||
|
#next-post {
|
||
|
float: right;
|
||
|
text-align: right;
|
||
|
width: 50%;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: $sm-break) {
|
||
|
a, p {
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|