1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/breadcrumbs.less

25 lines
403 B
Text
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
padding: 8px 15px;
margin: 0 0 @baseLineHeight;
list-style: none;
background-color: #f5f5f5;
.border-radius(4px);
li {
2012-02-02 14:02:14 -05:00
display: inline-block;
2012-03-05 03:36:57 -05:00
.ie7-inline-block();
text-shadow: 0 1px 0 @white;
}
.divider {
padding: 0 5px;
2012-07-29 19:36:16 -04:00
color: #ccc;
}
2012-07-29 19:36:16 -04:00
.active {
color: @grayLight;
}
}