1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
body {
background: white;
margin: 0;
padding: 0;
margin-top: 10px;
font-family: sans-serif;
color: black;
}
h1 {
font-size: 130%;
font-weight: bold;
}
h2 {
font-size: 120%;
font-weight: bold;
}
h3 {
font-size: 110%;
font-weight: bold;
}
h4 {
font-size: 100%;
font-weight: bold;
}
li {
margin-left: 20px;
margin-bottom: 1em;
}
hr {
border: none;
border-top: 1px solid black;
}
td {
text-align: left;
}
a:link, a:visited, a:active {
color: #0000CC
}
a:hover {
color: #0000CC;
text-decoration:underline;
}
|