You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
508 B
40 lines
508 B
/*
|
|
base.css
|
|
*/
|
|
|
|
/*
|
|
type selectors
|
|
*/
|
|
|
|
body,td {
|
|
font-family: Georgia, Times, Serif;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
padding: 0.5em;
|
|
background-color: #eee;
|
|
text-align: center; /* IE5 <div> centering hack pt. 1 */
|
|
}
|
|
hr {
|
|
width: 100%;
|
|
height: 1pt;
|
|
border: none;
|
|
border-top: 1px solid #999;
|
|
}
|
|
|
|
/*
|
|
class selectors
|
|
*/
|
|
|
|
hr.line {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
span.right {
|
|
float: right;
|
|
}
|
|
span.left {
|
|
float: left;
|
|
}
|