Sha256: 3a695f192fd1f059bb9997175c28bb8feb2fd9ee7613c40cb8f196f25d392c2d
Contents?: true
Size: 1.43 KB
Versions: 22
Compression:
Stored size: 1.43 KB
Contents
// @page Pattern Library/Components // @name Breadcrumbs // // @description // Breadcrumbs are used to provide signposting of a users location and to enable quick navigation around the site. They are only to be used as a secondary means of navigation however. Pages should also be navigable through other means. // // @markup // <ul class="us-crumbs"> // <li class="us-crumbs__item"><a href="/" class="us-crumbs__link">uSwitch.com</a></li> // <li class="us-crumbs__item"><a class="us-crumbs__link" href="http://www.uswitch.com/credit-reports/">Credit report</a></li> // <li class="us-crumbs__item"><a class="us-crumbs__link" href="http://www.uswitch.com/credit-reports/guides/">Credit reports guides</a></li> // <li class="us-crumbs__item">Statutory credit reports</li> // </ul> .us-crumbs { @extend %reset-box-model; @extend %clearfix; @extend %small-font; margin-top: 1em; margin-bottom: 1em; list-style: none; } .us-crumbs__item { @extend %float-left; margin-bottom: 0; color: $c-typegrey; &:before { display: inline-block; margin: 0 .35em; font-size: 1.4em; font-weight: normal; content: "\203A"; } &:first-child:before { width: 0; margin: 0; color: transparent; } &:last-child { font-weight: bold; } } .us-crumbs__link { color: $c-typegrey; &:visited { color: $c-typegrey; } &:hover { color: $c-typegrey; text-decoration: underline; } }
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
ustyle-1.3.12 | vendor/assets/stylesheets/ustyle/components/_breadcrumbs.scss |
ustyle-1.3.6 | vendor/assets/stylesheets/ustyle/components/_breadcrumbs.scss |