Files
Popsu-coloque/web/themes/contrib/mediteran/css/components/breadcrumb.css
T
2020-06-08 23:57:36 +02:00

33 lines
501 B
CSS

/**
* @file
* Breadcrumbs.
*/
.breadcrumb {
line-height: 1.8;
padding: 20px 0;
}
.breadcrumb ol {
margin: 0;
padding: 0;
}
[dir="rtl"] .breadcrumb ol {
/* This is required to win over specificity of [dir="rtl"] ol */
margin-right: 0;
}
.breadcrumb li {
display: inline;
list-style-type: none;
padding: 0;
}
/* IE8 does not support :not() and :last-child. */
.breadcrumb li:before {
content: ' \BB ';
color: #0678be;
}
.breadcrumb li:first-child:before {
content: none;
}