2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

adding the pager component after rewriting the pagination docs and css

This commit is contained in:
Mark Otto
2012-01-14 20:54:37 -08:00
parent 1c6048bac2
commit 6d916763f8
6 changed files with 210 additions and 77 deletions
+25
View File
@@ -0,0 +1,25 @@
// 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;
}