twbs--bootstrap/less/breadcrumbs.less

26 lines
530 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
padding: 8px 15px;
margin: 0 0 @line-height-base;
list-style: none;
background-color: #f5f5f5;
border-radius: @border-radius-base;
li {
2012-02-02 19:02:14 +00:00
display: inline-block;
2012-11-30 23:05:23 +00:00
text-shadow: 0 1px 0 #fff;
&:after {
display: inline-block;
content: "\00a0 /"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: #ccc;
}
}
2012-07-29 23:36:16 +00:00
.active {
color: @grayLight;
}
}