Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / themes / classy / css / components / breadcrumb.css
1 /**
2  * @file
3  * Styles for breadcrumbs.
4  */
5
6 .breadcrumb {
7   padding-bottom: 0.5em;
8 }
9 .breadcrumb ol {
10   margin: 0;
11   padding: 0;
12 }
13 [dir="rtl"] .breadcrumb ol {
14   /* This is required to win over specificity of [dir="rtl"] ol */
15   margin-right: 0;
16 }
17 .breadcrumb li {
18   display: inline;
19   list-style-type: none;
20   margin: 0;
21   padding: 0;
22 }
23 /* IE8 does not support :not() and :last-child. */
24 .breadcrumb li:before {
25   content: ' \BB ';
26 }
27 .breadcrumb li:first-child:before {
28   content: none;
29 }