The story of the gentle knight and his servant Sancho Panza has entranced readers for centuries.
The one with the Slough of Despond and Vanity Fair.
The first English novel.
img{ | |
max-width:100%; | |
height:auto; | |
} | |
.map_canvas img { | |
max-width: none; | |
} |
$(window).scroll(function() { | |
var scroll = $(window).scrollTop(); | |
if (scroll >= 80) { | |
$(".nav").addClass("is-scrolled"); | |
} else { | |
$(".nav").removeClass("is-scrolled"); | |
} | |
}); |
// My Super Minimal CSS Reset | Credit due to Eric Meyer + Nicolas Gallagher | http://meyerweb.com/eric/tools/css/reset/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, font, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, |
var i = 0; | |
while (i < 999) { | |
console.log("Hello World!"); | |
i++; | |
} |