Skip to content

Instantly share code, notes, and snippets.

View tomblanchard's full-sized avatar

Tom Blanchard tomblanchard

View GitHub Profile
@tomblanchard
tomblanchard / responsive-jquery-slideshow.css
Last active December 23, 2015 06:39
Responsive jQuery slideshow.
.slideshow {
margin-bottom:20px;
position:relative;
}
.slideshow__item {
width:100%;
}
.slideshow__item + .slideshow__item {
@tomblanchard
tomblanchard / jquery-doc-ready.js
Last active December 23, 2015 00:09
jQuery document ready.
(function ($, window, document, undefined) { 'use strict'; $(function () {
//
}); })(jQuery, window, document);
.grid {
margin-left:-24px;
list-style:none;
margin-bottom:0;
}
.grid__item {
display:inline-block;
width:50%;
padding-left:24px;