1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 16:50:00 +02:00

moving structure around + more work on builder...

This commit is contained in:
Jacob Thornton
2012-01-26 21:48:46 -08:00
parent e0e54d9c6c
commit dc2deb9a1b
47 changed files with 100 additions and 91 deletions

25
less/pager.less Normal file
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;
}