You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
977 B
51 lines
977 B
// Pagination
|
|
//
|
|
// Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
|
|
// there are no more previous or next posts to show.
|
|
|
|
.pagination {
|
|
overflow: hidden; // clearfix
|
|
margin: 0 -1.5rem 1rem;
|
|
color: #ccc;
|
|
text-align: center;
|
|
}
|
|
|
|
// Pagination items can be `span`s or `a`s
|
|
.pagination-item {
|
|
display: block;
|
|
padding: 1rem;
|
|
border: solid #eee;
|
|
border-width: 1px 0;
|
|
|
|
&:first-child {
|
|
margin-bottom: -1px;
|
|
}
|
|
}
|
|
|
|
// Only provide a hover state for linked pagination items
|
|
a.pagination-item:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
@media (min-width: 30em) {
|
|
.pagination {
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.pagination-item {
|
|
float: left;
|
|
width: 50%;
|
|
border-width: 1px;
|
|
|
|
&:first-child {
|
|
margin-bottom: 0;
|
|
border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
&:last-child {
|
|
margin-left: -1px;
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
}
|
|
}
|
|
|