mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
403 B
24 lines
403 B
// |
|
// Breadcrumbs |
|
// -------------------------------------------------- |
|
|
|
|
|
.breadcrumb { |
|
padding: 8px 15px; |
|
margin: 0 0 @baseLineHeight; |
|
list-style: none; |
|
background-color: #f5f5f5; |
|
.border-radius(4px); |
|
li { |
|
display: inline-block; |
|
.ie7-inline-block(); |
|
text-shadow: 0 1px 0 @white; |
|
} |
|
.divider { |
|
padding: 0 5px; |
|
color: #ccc; |
|
} |
|
.active { |
|
color: @grayLight; |
|
} |
|
}
|
|
|