Skip to content

Instantly share code, notes, and snippets.

@Laszaro
Laszaro / typography-scales.css
Created October 11, 2013 14:03
CSS - Typography Scales
/*
Source: http://typecast.com/blog/contrast-through-scale
The 16th century scale:
6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 21, 24, 26, 48, 60, 72
*/
body { font-size:100%; }
h1 { font-size: 2.25em; /* 16 x 2.25 = 36 */ }
h2 { font-size: 1.5em; /* 16 x 1.5 = 24 */ }
@Laszaro
Laszaro / .txt
Created December 1, 2013 06:09
HTACCESS - Start site from subfolder
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}/SUBFOLDER/$1 -f [NC]
RewriteRule ^([^/]+)$ /SUBFOLDER/$1 [L,QSA]

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})