1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-22 11:54:22 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/pager.less
Jeremy Ruston f30a7cc61d Added Twitter Bootstrap source
We're going to build a custom version
2012-06-24 13:14:40 +01:00

36 lines
567 B
Plaintext
Executable File

// 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: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
.border-radius(15px);
}
.pager a:hover {
text-decoration: none;
background-color: #f5f5f5;
}
.pager .next a {
float: right;
}
.pager .previous a {
float: left;
}
.pager .disabled a,
.pager .disabled a:hover {
color: @grayLight;
background-color: #fff;
cursor: default;
}