themes-wordpress/karuna/inc/jetpack-fonts.php
2018-02-27 14:13:25 +11:00

604 lines
14 KiB
PHP

<?php
add_filter( 'typekit_add_font_category_rules', function( $category_rules ) {
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.screen-reader-text:focus',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'body,
button,
input,
select,
textarea',
array(
array( 'property' => 'font-family', 'value' => 'Karla, sans-serif' ),
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h1,
h2,
h3,
h4,
h5,
h6',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
array( 'property' => 'font-family', 'value' => 'Karla, sans-serif' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h1',
array(
array( 'property' => 'font-size', 'value' => '32px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h2',
array(
array( 'property' => 'font-size', 'value' => '30px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h3',
array(
array( 'property' => 'font-size', 'value' => '26px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h4',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h5',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h6',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'cite,
dfn,
em,
i',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'blockquote',
array(
array( 'property' => 'font-size', 'value' => '26px' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'none',
'pre',
array(
array( 'property' => 'font-family', 'value' => '"Courier 10 Pitch", Courier, monospace' ),
array( 'property' => 'font-size', 'value' => '15px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'none',
'code,
kbd,
tt,
var',
array(
array( 'property' => 'font-family', 'value' => 'Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace' ),
array( 'property' => 'font-size', 'value' => '15px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'big',
array(
array( 'property' => 'font-size', 'value' => '125%' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'#infinite-handle span,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"]',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'dt',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.main-navigation',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-navigation,
.post-navigation,
.posts-navigation',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.post-navigation .title',
array(
array( 'property' => 'font-style', 'value' => 'normal' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
array( 'property' => 'font-size', 'value' => '13.2px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'a',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.entry-title',
array(
array( 'property' => 'font-size', 'value' => '32px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.entry-footer,
.entry-meta',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.entry-footer a,
.entry-meta a',
array(
array( 'property' => 'font-weight', 'value' => 'normal' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.entry-content,
.entry-summary',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.more-link',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.page-template-front-page .site-main > .hentry:first-of-type .entry-content',
array(
array( 'property' => 'font-size', 'value' => '20px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.front-testimonials .hentry',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.front-testimonials .hentry .entry-title',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.recent-posts .recent-posts-title',
array(
array( 'property' => 'font-weight', 'value' => 'normal' ),
array( 'property' => 'font-size', 'value' => '24px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.recent-posts .entry-title',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.top-bar',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.top-bar .jetpack-social-navigation a:before',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.site-title',
array(
array( 'property' => 'font-family', 'value' => 'Karla, sans-serif' ),
array( 'property' => 'font-size', 'value' => '32px' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-info',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.comment-reply-title,
.comments-title',
array(
array( 'property' => 'font-size', 'value' => '20px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-author .fn',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-metadata',
array(
array( 'property' => 'font-size', 'value' => '13.2px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-metadata a,
.comment-metadata a:visited',
array(
array( 'property' => 'font-weight', 'value' => 'normal' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.no-comments',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-form-author label,
.comment-form-comment label,
.comment-form-email label,
.comment-form-url label',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.widget-title',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.header-widget-area',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.site-content .full-width-widget-area .widget-title',
array(
array( 'property' => 'font-weight', 'value' => 'normal' ),
array( 'property' => 'font-size', 'value' => '20px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.footer-widgets-wrapper .widget',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.widget_rss a',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.widget_rss .rss-date',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.site-title',
array(
array( 'property' => 'font-size', 'value' => '42px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-info',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.page-template-front-page .site-main > .hentry:first-of-type .entry-content',
array(
array( 'property' => 'font-size', 'value' => '28px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.front-testimonials .hentry',
array(
array( 'property' => 'font-size', 'value' => '28px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.front-testimonials .hentry .entry-title',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.recent-posts .recent-posts-title',
array(
array( 'property' => 'font-size', 'value' => '28px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.recent-posts .entry-title',
array(
array( 'property' => 'font-size', 'value' => '20px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.entry-title',
array(
array( 'property' => 'font-size', 'value' => '42px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.entry-content,
.entry-summary',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.widget-title',
array(
array( 'property' => 'font-size', 'value' => '20px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.header-widget-area',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.site-content .full-width-widget-area .widget-title',
array(
array( 'property' => 'font-size', 'value' => '28px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.footer-widgets-wrapper .widget',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.comment-reply-title,
.comments-title',
array(
array( 'property' => 'font-size', 'value' => '30px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h1',
array(
array( 'property' => 'font-size', 'value' => '42px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h2',
array(
array( 'property' => 'font-size', 'value' => '32px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h3',
array(
array( 'property' => 'font-size', 'value' => '30px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h4',
array(
array( 'property' => 'font-size', 'value' => '26px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h5',
array(
array( 'property' => 'font-size', 'value' => '20px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h6',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'none',
'.genericon,
.main-navigation .menu-item-has-children > a:after,
.main-navigation .page_item_has_children > a:after',
array(
array( 'property' => 'font-size', 'value' => '16px' ),
array( 'property' => 'font-family', 'value' => '"Genericons"' ),
array( 'property' => 'font-style', 'value' => 'normal' ),
array( 'property' => 'font-weight', 'value' => 'normal' ),
array( 'property' => 'font-variant', 'value' => 'normal' ),
),
array(
'screen and (min-width: 768px)',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.sticking .site-title',
array(
array( 'property' => 'font-size', 'value' => '28.8px' ),
),
array(
'screen and (min-width: 768px)',
)
);
return $category_rules;
} );