mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
24 lines
445 B
SCSS
24 lines
445 B
SCSS
//
|
|
// Breadcrumbs
|
|
// --------------------------------------------------
|
|
|
|
|
|
.breadcrumb {
|
|
padding: 8px 15px;
|
|
margin: 0 0 $baseLineHeight;
|
|
list-style: none;
|
|
background-color: #f5f5f5;
|
|
@include border-radius($baseBorderRadius);
|
|
> li {
|
|
display: inline-block;
|
|
@include ie7-inline-block();
|
|
text-shadow: 0 1px 0 $white;
|
|
> .divider {
|
|
padding: 0 5px;
|
|
color: #ccc;
|
|
}
|
|
}
|
|
.active {
|
|
color: $grayLight;
|
|
}
|
|
}
|