GARAMOND (23.84% on Mac, 86.24% on Windows)
Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
LUCIDA BRIGHT (64.90% on Mac, 33.84% on Windows) Huge x-height
| <?php echo (++$count%2 ? "alpha" : "omega"); ?> |
| <?php preg_replace('/<p([^>]+)?>/', '<p$1 class="first">', $content, 1); ?> |
| data:text/html, <html contenteditable> |
| @mixin retina($ratio: 1.5) { | |
| $dpi: $ratio * 96; | |
| $opera-ratio: $ratio * 100; | |
| @media only screen and (-webkit-min-device-pixel-ratio: #{$ratio}), | |
| only screen and ( -o-min-device-pixel-ratio: '#{$opera-ratio}/100'), | |
| only screen and ( min-resolution: #{$dpi}dpi), | |
| only screen and ( min-resolution: #{$ratio}dppx) { | |
| @content; | |
| } |
| <?php | |
| function fragment_cache($key, $ttl, $function) { | |
| if ( is_user_logged_in() ) { | |
| call_user_func($function); | |
| return; | |
| } | |
| $key = apply_filters('fragment_cache_prefix','fragment_cache_').$key; | |
| $output = get_transient($key); | |
| if ( empty($output) ) { | |
| ob_start(); |
| <?php | |
| /** | |
| * TypeKit Fonts | |
| * | |
| * @since Theme 1.0 | |
| */ | |
| function theme_typekit($kit_id) { | |
| wp_enqueue_script( 'theme_typekit', "//use.typekit.net/$kit_id.js"); | |
| add_action( 'wp_head', 'theme_typekit_inline' ); | |
| } |
| var UTIL = { | |
| fire : function(func,funcname, args){ | |
| var namespace = SCRIPTS; // indicate your obj literal namespace here | |
| funcname = (funcname === undefined) ? 'init' : funcname; | |
| if (func !== '' && namespace[func] && typeof namespace[func][funcname] == 'function'){ | |
| namespace[func][funcname](args); | |
| } |
| /* # Grid Settings | |
| --------------------------------------------- */ | |
| /* Base Size */ | |
| $font-size: 18px; | |
| /* Gutters */ | |
| $gutter: 1em; | |
| /* Breakpoint Widths (ems) */ |