11fc803d9d
`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.
35 lines
481 B
CSS
35 lines
481 B
CSS
body {
|
|
font-family: Futura, sans-serif;
|
|
background-color: #F6CEFC;
|
|
}
|
|
|
|
.examples {
|
|
margin: 8px;
|
|
padding: 4px 6px 4px 6px;
|
|
border: 4px solid #eeeeee;
|
|
}
|
|
|
|
.title {
|
|
margin: 8px;
|
|
padding: 4px 6px 4px 6px;
|
|
border: 4px solid #eeeeee;
|
|
}
|
|
|
|
.about {
|
|
margin: 8px;
|
|
padding: 4px 6px 4px 6px;
|
|
border: 4px solid #eeeeee;
|
|
}
|
|
|
|
.contact {
|
|
margin: 8px;
|
|
padding: 4px 6px 4px 6px;
|
|
border: 4px solid #eeeeee;
|
|
}
|
|
|
|
.table {
|
|
margin: 8px;
|
|
padding: 4px 6px 4px 6px;
|
|
border: 4px solid #eeeeee;
|
|
}
|