comparison static/bootstrap/less/breadcrumbs.less @ 61:130eccd396d8

Now using Boostrap with LESS.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 06 Feb 2013 08:22:31 -0800
parents
children d29e2f337b00
comparison
equal deleted inserted replaced
60:8250c977bc50 61:130eccd396d8
1 //
2 // Breadcrumbs
3 // --------------------------------------------------
4
5
6 .breadcrumb {
7 padding: 8px 15px;
8 margin: 0 0 @baseLineHeight;
9 list-style: none;
10 background-color: #f5f5f5;
11 .border-radius(@baseBorderRadius);
12 > li {
13 display: inline-block;
14 .ie7-inline-block();
15 text-shadow: 0 1px 0 @white;
16 > .divider {
17 padding: 0 5px;
18 color: #ccc;
19 }
20 }
21 > .active {
22 color: @grayLight;
23 }
24 }