2020-06-15 06:56:21 +00:00
|
|
|
.content {
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
width: calc(96% - 2rem);
|
|
|
|
min-height: calc(100% - 40.8px - 8rem);
|
|
|
|
padding: 1rem;
|
|
|
|
margin: 2rem auto;
|
2020-08-03 08:48:17 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content > nav {
|
|
|
|
margin-top: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > .pagination {
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
|
|
|
padding-inline-start: unset;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > .page-item {
|
|
|
|
display: block;
|
|
|
|
list-style: none;
|
|
|
|
padding-right: 8px;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > .page-item:last-child {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > .page-item.disabled {
|
|
|
|
color: darkgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > .page-item.active {
|
|
|
|
font-weight: bold;
|
2020-06-15 06:56:21 +00:00
|
|
|
}
|