2
The input line in style has a "t" instead of an "x"
input {
font-size: 11pt;
}
you need to change the 11pt to 11px;
input {
font-size: 11px;
}
you could also set the dropdown boxes to match by adding this line:
select {
font-size: 11px;
}
(with whatever size you wanted of course)