Skip to content

Instantly share code, notes, and snippets.

@veryblue
Created August 26, 2016 14:44
Show Gist options
  • Save veryblue/ac9958d457c6148811d8b6c9fdddd4f8 to your computer and use it in GitHub Desktop.
Save veryblue/ac9958d457c6148811d8b6c9fdddd4f8 to your computer and use it in GitHub Desktop.
@charset "UTF-8";
/*
* 2020年まで使えるfont-family游ゴシックを含んだベストプラクティス
* http://qiita.com/RinoTsuka/items/4181efd43d072e246519
*
*/
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
font-weight: 100;
}
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
font-weight: 200;
}
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
font-weight: 300;
}
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
font-weight: 400;
}
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Bold");
font-weight: bold;
}
@font-face {
font-family: "Helvetica Neue";
src: local("Helvetica Neue Regular");
font-weight: 100;
}
@font-face {
font-family: "Helvetica Neue";
src: local("Helvetica Neue Regular");
font-weight: 200;
}
body {
font-family: "-apple-system", "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment