Skip to content

Commit

Permalink
add media links
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeAskew committed Oct 29, 2015
1 parent dee034b commit 99fa72d
Show file tree
Hide file tree
Showing 15 changed files with 93 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/assets/fabricator/scripts/f.js

Large diffs are not rendered by default.

Binary file added dist/assets/toolkit/images/alistapart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/assets/toolkit/images/net-magazine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/assets/toolkit/images/smashing-magazine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dist/assets/toolkit/scripts/toolkit.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/assets/toolkit/styles/toolkit.css

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,23 @@ <h3 class="white">Rapid Prototyping</h3>
</div>
</div>

<div class="bg-grey1 pt-s pb-xl">
<div class="row ta-c">
<h3 class="blue">Featured In</h3>
</div>
<div class="row ta-c feature-row">
<a href="http://alistapart.com/blog/post/style-guide-generator-roundup" target="_blank">
<img src="/assets/toolkit/images/alistapart.png" alt="A List Apart">
</a>
<a href="http://www.smashingmagazine.com/2015/04/an-in-depth-overview-of-living-style-guide-tools/" target="_blank">
<img src="/assets/toolkit/images/smashing-magazine.png" alt="Smashing Magazine">
</a>
<a href="https://twitter.com/barrymcgee/status/618807894138601472" target="_blank">
<img src="/assets/toolkit/images/net-magazine.png" alt="Net Magazine">
</a>
</div>
</div>

<div class="row pb-xl">
<div class="ta-c">
<h2>Quick Start</h2>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^1.3.3",
"gulp-sass": "^2.1.0",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
Expand Down
Binary file added src/assets/toolkit/images/alistapart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/toolkit/images/net-magazine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/toolkit/images/smashing-magazine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions src/assets/toolkit/styles/base/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,42 @@ img {
text-align: right;
}
}

.feature-row {

@include breakpoint ($bp-m) {
display: flex;
align-items: center;
}


a {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 2em;
max-width: 10em;
opacity: 0.4;

@include breakpoint($bp-m) {
width: percentage(1/3);
max-width: 100%;
padding: 0 5%;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
}

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

&:not(:last-child) {
margin-top: 1em;
}

img {
width: 100%;
}
}
}
8 changes: 8 additions & 0 deletions src/assets/toolkit/styles/utils/_bg.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@
color: color(white);
}
}

.bg-grey1 {
background-color: color(grey, 1);

a {
color: color(black);
}
}
8 changes: 8 additions & 0 deletions src/assets/toolkit/styles/variables/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ $colors: (
@function color($color, $tone: 0) {
@return map-get(map-get($colors, $color), $tone);
}

.blue {
color: color(blue);
}

.black {
color: color(black);
}
17 changes: 17 additions & 0 deletions src/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,23 @@ <h3 class="white">Rapid Prototyping</h3>
</div>
</div>

<div class="bg-grey1 pt-s pb-xl">
<div class="row ta-c">
<h3 class="blue">Featured In</h3>
</div>
<div class="row ta-c feature-row">
<a href="http://alistapart.com/blog/post/style-guide-generator-roundup" target="_blank">
<img src="{{baseurl}}/assets/toolkit/images/alistapart.png" alt="A List Apart">
</a>
<a href="http://www.smashingmagazine.com/2015/04/an-in-depth-overview-of-living-style-guide-tools/" target="_blank">
<img src="{{baseurl}}/assets/toolkit/images/smashing-magazine.png" alt="Smashing Magazine">
</a>
<a href="https://twitter.com/barrymcgee/status/618807894138601472" target="_blank">
<img src="{{baseurl}}/assets/toolkit/images/net-magazine.png" alt="Net Magazine">
</a>
</div>
</div>

<div class="row pb-xl">
<div class="ta-c">
<h2>Quick Start</h2>
Expand Down

0 comments on commit 99fa72d

Please sign in to comment.