mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
25 lines
357 B
Text
25 lines
357 B
Text
// PAGER
|
|
// -----
|
|
|
|
.pager {
|
|
margin-left: 0;
|
|
margin-bottom: @baseLineHeight;
|
|
list-style: none;
|
|
text-align: center;
|
|
.clearfix();
|
|
}
|
|
.pager li {
|
|
display: inline;
|
|
}
|
|
.pager a {
|
|
display: inline-block;
|
|
padding: 6px 15px;
|
|
background-color: #f5f5f5;
|
|
.border-radius(15px);
|
|
}
|
|
.pager .next a {
|
|
float: right;
|
|
}
|
|
.pager .previous a {
|
|
float: left;
|
|
}
|