Add styling for paging navigation
This commit is contained in:
parent
ee0a094e3d
commit
bbe3a5116e
2 changed files with 28 additions and 1 deletions
|
@ -28,3 +28,30 @@ nav#menuGlowne {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navigation {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
a[class^="button"] {
|
||||||
|
background: #8B0000;
|
||||||
|
padding: 0.5rem 1.5rem;
|
||||||
|
margin: 1rem 0;
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-prev:before {
|
||||||
|
content: "<";
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-next:after {
|
||||||
|
content: ">";
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@ append content
|
||||||
span
|
span
|
||||||
span= day.teacher
|
span= day.teacher
|
||||||
span= day.room
|
span= day.room
|
||||||
+nav
|
+nav
|
||||||
|
|
||||||
.description
|
.description
|
||||||
div
|
div
|
||||||
|
|
Loading…
Reference in a new issue