rollup merge of #22097: cllns/fix-fallback-fonts

The fallback font for a serif font should also be serif, not sans serif.
This commit is contained in:
Alex Crichton 2015-02-10 08:42:47 -08:00
commit 5ad52ca6b3
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@
body {
margin: 0 auto;
padding: 0 15px;
font-family: "Source Serif Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Source Serif Pro", Georgia, Times, "Times New Roman", serif;
font-size: 18px;
color: #333;
line-height: 1.428571429;

View File

@ -64,7 +64,7 @@
body {
color: #333;
font: 16px/1.4 "Source Serif Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
font: 16px/1.4 "Source Serif Pro", Georgia, Times, "Times New Roman", serif;
margin: 0;
position: relative;
padding: 10px 15px 20px 15px;