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:
parent
80dc5f45fb
commit
11fc803d9d
@ -1,40 +1,34 @@
|
|||||||
body {
|
body {
|
||||||
font-family: futura;
|
font-family: Futura, sans-serif;
|
||||||
font: large;
|
background-color: #F6CEFC;
|
||||||
background-color:#F6CEFC;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.examples {
|
.examples {
|
||||||
font: large;
|
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
padding: 4px 6px 4px 6px;
|
padding: 4px 6px 4px 6px;
|
||||||
border:4px solid #eeeeee;
|
border: 4px solid #eeeeee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font: large;
|
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
padding: 4px 6px 4px 6px;
|
padding: 4px 6px 4px 6px;
|
||||||
border:4px solid #eeeeee;
|
border: 4px solid #eeeeee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.about {
|
.about {
|
||||||
font: large;
|
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
padding: 4px 6px 4px 6px;
|
padding: 4px 6px 4px 6px;
|
||||||
border:4px solid #eeeeee;
|
border: 4px solid #eeeeee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact {
|
.contact {
|
||||||
font: large;
|
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
padding: 4px 6px 4px 6px;
|
padding: 4px 6px 4px 6px;
|
||||||
border:4px solid #eeeeee;
|
border: 4px solid #eeeeee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table {
|
.table {
|
||||||
font: large;
|
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
padding: 4px 6px 4px 6px;
|
padding: 4px 6px 4px 6px;
|
||||||
border:4px solid #eeeeee;
|
border: 4px solid #eeeeee;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user