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
|
body { margin: 0; padding: 20px; }
/* FONTS */
body {
font: normal 16px/1.3em arial, helvetica, sans-serif;
font-size: 85%;
}
/* SITE STYLES */
h1, h2, h3, h4 {
font-weight: normal;
line-height: 1.1em;
margin: 0 0 16px 0;
padding: 0:
}
h1 { font-size: 200%; }
h2 { font-size: 170%; }
h3 { font-size: 150%; }
h4 { font-size: 130%; }
a {
font-weight: bold;
letter-spacing: 1px;
text-decoration: underline;
}
a:hover { text-decoration: none; }
b, strong { letter-spacing: 1px; }
img { border: 0; }
.border {
background-color: #e6e6e6;
border-top: 2px solid #333333;
border-bottom: 2px solid #333333;
padding: 10px 0 0 15px;
margin-bottom: 10px;
}
|