<?php
header("Content-type: text/css");
// stylesheet options
$header1 = "#0000FF";
$header2 = "#0050FF";
$header3 = "#0088FF";
$visited = "purple";
$input_bg = "#FFFFFF";
$input_border = "#666666";
$outline = "#DDDDDD";
$width = "450";
$half = $width/2;
$input_text = "10";
$standard_text = "14";
?>
H1 {
font-size: 125%;
font-family: arial;
font-weight: bold;
margin: 0;
color: <?=$header1?>
}
H2 {
font-size: 100%;
font-weight: normal;
margin: 0;
color:<?=$header2?>
}
H3 {
font-size: 90%;
font-weight: normal;
margin: 0;
color:<?=$header3?>
}
B {
font-weight: normal;
margin: 0;
color:<?=$header2?>
}
a:visited {
color:<?=$visited?>
}
a img {
border: none;
}
table {
font-size: <?=$standard_text?>px;
font-family: arial;
}
INPUT {
font-size: <?=$input_text?>px;
background-color: <?=$input_bg?>;
border: 1px solid <?=$input_border?>
}
.checkbox {
font-size: <?=$input_text?>px;
background-color: <?=$input_bg?>;
border: 0px;
}
.notesbox {
font-size: <?=$input_text?>px;
font-family: arial;
background-color: <?=$input_bg?>;
border: 1px solid <?=$input_border?>
}
.outline {
border: 1px solid <?=$outline?>
}
.tablewidth {
width: <?=$width?>
}
.halfwidth {
width: <?=$half?>
}