Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Listing Page- Header-- store-other-items #38

Closed
wants to merge 10 commits into from
33 changes: 32 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,38 @@
<![endif]-->

<main class="container">
<!-- Add your site or application content here -->
<header>
<section class="otherItems">
<ul class="thumbnails">
<li>
<a title="{{image-title}}" href="https://www.etsy.com/listing/248048380/unisex-leather-toiletry-case-leather?ref=listing-shop-header-0"> <!-- listing url -->
<img src="https://img0.etsystatic.com/100/0/10838481/il_75x75.833594566_mij0.jpg"> <!-- image URL -->
</a>
</li>
<li>
<a title="{{image-title}}" href="https://www.etsy.com/listing/248048380/unisex-leather-toiletry-case-leather?ref=listing-shop-header-0"> <!-- listing url -->
<img src="https://img0.etsystatic.com/100/0/10838481/il_75x75.833594566_mij0.jpg"> <!-- image URL -->
</a>
</li>
<li>
<a title="{{image-title}}" href="https://www.etsy.com/listing/248048380/unisex-leather-toiletry-case-leather?ref=listing-shop-header-0"> <!-- listing url -->
<img src="https://img0.etsystatic.com/100/0/10838481/il_75x75.833594566_mij0.jpg"> <!-- image URL -->
</a>
</li>
<li>
<a title="{{image-title}}" href="https://www.etsy.com/listing/248048380/unisex-leather-toiletry-case-leather?ref=listing-shop-header-0"> <!-- listing url -->
<img src="https://img0.etsystatic.com/100/0/10838481/il_75x75.833594566_mij0.jpg"> <!-- image URL -->
</a>
</li>
<li class="item-counter">
<a title="{{image-title}}" href="">
<span class="item-count">{{item-count}}</span>
<p>items</p>
</a>
</li>
</ul>
</section>
</header>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This all conflicts, of course... :(

</main><!-- .container -->

<!-- bower:js -->
Expand Down
40 changes: 40 additions & 0 deletions src/scss/_otherItems.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.otherItems {
float: right;
background-color: #F5F4F1;
font-family: Arial;

.thumbnails {
list-style-type: none;

li {
display: inline-block;
border: 3px #FFF solid;
border-radius: 5px;
overflow: hidden; // aligns all pics
margin-right: 11px;

&:last-child {
margin-right: 0;
}

&.item-counter {
width: 75px;
height: 75px;
text-align: center;
line-height: 1;
background: #FFF;

a {
text-decoration: none;
color: #34A8C4;
font-size: 20px;

p {
color: #999999;
font-size: 10px;
}
}
}
}
}
}
7 changes: 4 additions & 3 deletions src/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,12 @@ textarea {
Author's custom styles
========================================================================== */

// bower:scss
@import "../../bower_components/font-awesome/scss/font-awesome.scss";
// endbower
// // bower:scss
// @import "../../bower_components/font-awesome/scss/font-awesome.scss";
// // endbower

@import "grid";
@import "otherItems";

main.container {
@extend .grid;
Expand Down