diff --git a/components/breadcrumb/breadcrumb.html b/components/breadcrumb/breadcrumb.html new file mode 100644 index 0000000..1ed4672 --- /dev/null +++ b/components/breadcrumb/breadcrumb.html @@ -0,0 +1,47 @@ + + +
diff --git a/components/breadcrumb/breadcrumb.js b/components/breadcrumb/breadcrumb.js new file mode 100644 index 0000000..f6df84b --- /dev/null +++ b/components/breadcrumb/breadcrumb.js @@ -0,0 +1,5 @@ + +$(document).ready( () => { + console.log('Load component - breadcrumb') + +}) \ No newline at end of file diff --git a/components/breadcrumb/breadcrumb.scss b/components/breadcrumb/breadcrumb.scss new file mode 100644 index 0000000..196a639 --- /dev/null +++ b/components/breadcrumb/breadcrumb.scss @@ -0,0 +1,45 @@ +@import "../../src/scss/variables.scss"; +@import "../../src/scss/mixins.scss"; + +.component-breadcrumb { + display: block; + padding-top: $header-height-mobile+60; + margin-bottom: 20px; + + .items { + display: block; + list-style: none; + padding: 20px 0 15px 0; + border-bottom: 1px solid $black-alpha; + + .item { + display: inline; + @include font-style($font-sans, 'regular', $font-18); + color: $gray; + + .link { + color: $gray; + } + + &:after { + content: '>'; + padding: 0 4px; + font-size: $font-14; + } + + &:last-of-type { + font-weight: bold; + &:after { + content: ''; + } + } + + } + } +} + +@media (min-width: map-get($grid-breakpoints, 'md')) { + .component-breadcrumb { + padding-top: $header-height+60; + } +} diff --git a/components/buy/buy.html b/components/buy/buy.html new file mode 100644 index 0000000..ac76340 --- /dev/null +++ b/components/buy/buy.html @@ -0,0 +1,8 @@ + + +