themes-wordpress/libre-2/inc/jetpack-fonts.php
2018-02-27 14:21:36 +11:00

579 lines
14 KiB
PHP

<?php
add_filter( 'typekit_add_font_category_rules', function( $category_rules ) {
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'html',
array(
array( 'property' => 'font-family', 'value' => 'sans-serif' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'b,
strong',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'dfn',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'small',
array(
array( 'property' => 'font-size', 'value' => '13px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'sub,
sup',
array(
array( 'property' => 'font-size', 'value' => '75%' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'none',
'code,
kbd,
samp',
array(
array( 'property' => 'font-family', 'value' => 'monospace, monospace' ),
array( 'property' => 'font-size', 'value' => '1em' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'pre',
array(
array( 'property' => 'font-family', 'value' => 'monospace, monospace' ),
array( 'property' => 'font-size', 'value' => '1em' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'button,
input,
optgroup,
select,
textarea',
array(
array( 'property' => 'font', 'value' => 'inherit' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'optgroup',
array(
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' => '"Libre Baskerville", Libre, Georgia, Times, serif' ),
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h1,
h2,
h3,
h4,
h5,
h6,
.site-title',
array(
array( 'property' => 'font-family', 'value' => '"Libre Baskerville", Libre, Georgia, Times, serif' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h1',
array(
array( 'property' => 'font-size', 'value' => '29px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h2',
array(
array( 'property' => 'font-size', 'value' => '23px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h3',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h4',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h5',
array(
array( 'property' => 'font-size', 'value' => '13px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h6',
array(
array( 'property' => 'font-size', 'value' => '12px' ),
)
);
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' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'pre',
array(
array( 'property' => 'font-family', 'value' => '"Libre Baskerville", Libre, Georgia, Times, serif' ),
)
);
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' => '16px' ),
)
);
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',
'blockquote:before',
array(
array( 'property' => 'font-size', 'value' => '72px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comments-area blockquote',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.intro',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
array( 'property' => 'font-size', 'value' => '23px' ),
)
);
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',
'caption',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'label',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'#infinite-handle span,
button,
input[type="button"],
input[type="reset"],
input[type="submit"]',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'input[type="email"],
input[type="password"],
input[type="search"],
input[type="text"],
input[type="url"]',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.singular .site-title',
array(
array( 'property' => 'font-size', 'value' => '29px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-description',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.entry-title',
array(
array( 'property' => 'font-size', 'value' => '29px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.entry-footer,
.entry-meta',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.more-link',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.page-title',
array(
array( 'property' => 'font-size', 'value' => '29px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-footer',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-info',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.main-navigation',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-main .comment-navigation,
.site-main .post-navigation,
.site-main .posts-navigation',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.site-main .post-navigation',
array(
array( 'property' => 'font-size', 'value' => '23px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-navigation .meta-nav,
.post-navigation .meta-nav,
.posts-navigation .meta-nav',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-style', 'value' => 'italic' ),
array( 'property' => 'font-weight', 'value' => 'normal' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'none',
'.screen-reader-text:focus',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-size', 'value' => '0.875rem' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.widget',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.widget-title,
.widgettitle',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.widget_calendar th',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'td#prev',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'td#next',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.widget_recent_comments a',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.widget_recent_comments .comment-author-link,
.widget_recent_comments .comment-author-link a',
array(
array( 'property' => 'font-style', 'value' => 'normal' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.rsswidget',
array(
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.rss-date',
array(
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-meta',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.comment-author',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
array( 'property' => 'font-style', 'value' => 'normal' ),
array( 'property' => 'font-weight', 'value' => 'bold' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.no-comments',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'#infinite-footer .blog-credits',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'#infinite-handle span',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.wp-caption-text',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
array( 'property' => 'font-style', 'value' => 'italic' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'.wp-caption-text:before',
array(
array( 'property' => 'font-style', 'value' => 'normal' ),
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'none',
'.main-navigation ul > li.menu-item-has-children > a:after,
.main-navigation ul > li.page_item_has_children > a:after',
array(
array( 'property' => 'font-size', 'value' => '23px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.singular .entry-title,
h1',
array(
array( 'property' => 'font-size', 'value' => '47px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h2',
array(
array( 'property' => 'font-size', 'value' => '29px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h3',
array(
array( 'property' => 'font-size', 'value' => '23px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h4',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h5',
array(
array( 'property' => 'font-size', 'value' => '14px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'h6',
array(
array( 'property' => 'font-size', 'value' => '13px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'blockquote',
array(
array( 'property' => 'font-size', 'value' => '23px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'body-text',
'blockquote:before',
array(
array( 'property' => 'font-size', 'value' => '123px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
TypekitTheme::add_font_category_rule( $category_rules, 'headings',
'.sticking .site-title',
array(
array( 'property' => 'font-size', 'value' => '18px' ),
),
array(
'screen and ( min-width: 45em )',
)
);
return $category_rules;
} );