diff options
author | Jessica Stokes <hello@jessicastokes.net> | 2015-06-16 18:33:02 +1000 |
---|---|---|
committer | Jessica Stokes <hello@jessicastokes.net> | 2015-06-16 18:37:46 +1000 |
commit | 11fc803d9df77b616d3d52c6ec739cfe99ffb93a (patch) | |
tree | 2e1403f8dde8496a862135d9ead2154bf9720544 /resources | |
parent | 80dc5f45fb36393c95d8af0a418f9e96e3d9c50b (diff) |
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.
Diffstat (limited to 'resources')
-rw-r--r-- | resources/pronouns.css | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/resources/pronouns.css b/resources/pronouns.css index 3ad386d..1285cee 100644 --- a/resources/pronouns.css +++ b/resources/pronouns.css @@ -1,40 +1,34 @@ body { - font-family: futura; - font: large; - background-color:#F6CEFC; + font-family: Futura, sans-serif; + background-color: #F6CEFC; } .examples { - font: large; margin: 8px; padding: 4px 6px 4px 6px; - border:4px solid #eeeeee; + border: 4px solid #eeeeee; } .title { - font: large; margin: 8px; padding: 4px 6px 4px 6px; - border:4px solid #eeeeee; + border: 4px solid #eeeeee; } .about { - font: large; margin: 8px; padding: 4px 6px 4px 6px; - border:4px solid #eeeeee; + border: 4px solid #eeeeee; } .contact { - font: large; margin: 8px; padding: 4px 6px 4px 6px; - border:4px solid #eeeeee; + border: 4px solid #eeeeee; } .table { - font: large; margin: 8px; padding: 4px 6px 4px 6px; - border:4px solid #eeeeee; + border: 4px solid #eeeeee; } |