// jQuery
$(document).ready(function() {
// code
})
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Options +FollowSymLinks -MultiViews | |
RewriteEngine On | |
RewriteCond %{DOCUMENT_ROOT}/SUBFOLDER/$1 -f [NC] | |
RewriteRule ^([^/]+)$ /SUBFOLDER/$1 [L,QSA] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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 */ } |