Tumblr Quick New Dash Font Fix

Simple style that shrinks the Tumblr new dash font. Did this quick, I'm sure others have done it faster and better but wanted to throw my hat in the ring. Shrinks titles and headings like XKit Tweaks does, but that can be removed by removing everything after (and including) "h1".

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name           Tumblr Quick New Dash Font Fix
@version        0.0.2
@description    Simple style that shrinks the Tumblr new dash font. Did this quick, I'm sure others have done it faster and better but wanted to throw my hat in the ring. Shrinks titles and headings like XKit Tweaks does, but that can be removed by removing everything after (and including) "h1".
@author         citrusella
@namespace https://greasyfork.org/users/662334
==/UserStyle== */

@-moz-document url-prefix("https://www.tumblr.com") {
p:not(.tab_anchor_text),a,li,.LN-U6,._3t3fM {
    font-size: 14px !important;
}

h1 { /*pulled directly from xkit*/
    font-family: "Helvetica Neue", Helvetica, sans-serif !important;
    font-size: 22px !important;
    font-weight: bold !important;
    line-height: normal !important;
    min-height: 25px !important;
}

h2 { /*pulled directly from xkit*/
    font-size: 15px !important;
    line-height: normal !important;
    font-weight: bold !important;
    font-family: "Helvetica Neue", Helvetica, sans-serif !important;
}
}