Bootstrap docs say:
@font-family-base
、@font-size-base
、および@line-height-base
属性を活版印刷のベースとして使用します。
これは、@font-family-base
というCSS変数があるということですか?
CSSでこれを設定して、ページ全体のフォントを変更するにはどうすればよいですか?
Bootstrapカスタマイズに関するドキュメント にアクセスします。たとえば、@sansFontFamily
、@serifFontFamily
、@monoFontFamily
、@baseFontSize
など
Bootstrap 3の場合、custom.cssを開き、
body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: "Ubuntu", Helvetica, Arial, sans-serif!important;
}
CSS変数ではなく、 LESS変数 です。
以下を参照して、CSSファイルの先頭に配置してください。
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);