The default web font is Proxima Nova. To see the list of font weights and styles available, click here.
The font is loaded using Adobe Typekit. Because of the difference in font-size, font-weight and line-height, CSS properties specific to this font can be applied using the lang attribute selector: html:lang(zh-cn) { ... }
The font is loaded using Adobe Typekit. Because of the difference in font-size, font-weight and line-height, CSS properties specific to this font can be applied using the lang attribute selector: html:lang(ja) { ... }
/* default styles */
p {
font-size: 15px;
}
/* specific font styles for Chinese locale */
html:lang(zh-cn) p {
font-size: 14px;
}
/* specific font styles for Japanese locale */
html:lang(ja) p {
font-size: 14px;
}