Remove invalid CSS, add generic to font stack

`large` is not a valid `font` property, and this makes no change to the rendering of the site.
Added `sans-serif` to the end of the font stack to avoid falling back to a serif font on systems without Futura installed.
This commit is contained in:
Jessica Stokes 2015-06-16 18:33:02 +10:00
parent 80dc5f45fb
commit 11fc803d9d

View File

@ -1,39 +1,33 @@
body {
font-family: futura;
font: large;
font-family: Futura, sans-serif;
background-color: #F6CEFC;
}
.examples {
font: large;
margin: 8px;
padding: 4px 6px 4px 6px;
border: 4px solid #eeeeee;
}
.title {
font: large;
margin: 8px;
padding: 4px 6px 4px 6px;
border: 4px solid #eeeeee;
}
.about {
font: large;
margin: 8px;
padding: 4px 6px 4px 6px;
border: 4px solid #eeeeee;
}
.contact {
font: large;
margin: 8px;
padding: 4px 6px 4px 6px;
border: 4px solid #eeeeee;
}
.table {
font: large;
margin: 8px;
padding: 4px 6px 4px 6px;
border: 4px solid #eeeeee;