Skip to content

replace-bodge-font by ncaq

Details

Authorncaq

LicenseMIT

Category*

Created

Updated

Size1.4 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

適当に設定されたArialなどのフォントをシステムデフォルトに置き換える。

Notes

2021-01-14:
added: MS Pゴシックなどを回避
2020-07-06:
deleted: GitHub除外設定を消去する

Source code

@charset "UTF-8";
/* ==UserStyle==
@name      replace-bodge-font
@namespace https://www.ncaq.net/
@author    ncaq
@version   1.0.0
@license   MIT
==/UserStyle== */
@-moz-document url-prefix("http://"), url-prefix("https://")
{
  @font-face {
    font-family: "Arial";
    font-weight: normal;
    src: local("sans-serif");
  }
  @font-face {
    font-family: "Arial";
    font-weight: bold;
    src: local("sans-serif");
  }
  @font-face {
    font-family: "MS PGothic";
    font-weight: normal;
    src: local("sans-serif");
  }
  @font-face {
    font-family: "MS PGothic";
    font-weight: bold;
    src: local("sans-serif");
  }
  @font-face {
    font-family: "MS Pゴシック";
    font-weight: normal;
    src: local("sans-serif");
  }
  @font-face {
    font-family: "MS Pゴシック";
    font-weight: bold;
    src: local("sans-serif");
  }
  @font-face {
    font-family: "MS Gothic";
    font-weight: normal;
    src: local("monospace");
  }
  @font-face {
    font-family: "MS Gothic";
    font-weight: bold;
    src: local("monospace");
  }
  @font-face {
    font-family: "MS ゴシック";
    font-weight: normal;
    src: local("monospace");
  }
  @font-face {
    font-family: "MS ゴシック";
    font-weight: bold;
    src: local("monospace");
  }
}

Reviews

No reviews yet.