Relative fonts and decreasing padding on headings.

This commit is contained in:
ejc12 2011-01-15 20:58:22 +00:00
parent 628108a3b8
commit 16b781fb5f

View file

@ -21,7 +21,7 @@ body{
padding: 0; padding: 0;
height: 100%; /* needed for container min-height */ height: 100%; /* needed for container min-height */
font-family: 'Arimo', "Lucida Sans Unicode","Lucida Grande", Geneva, helvetica, sans-serif; font-family: 'Arimo', "Lucida Sans Unicode","Lucida Grande", Geneva, helvetica, sans-serif;
/*font-size: 62.5%;*/ font-size: 1em;
height: auto !important; /* real browsers */ height: auto !important; /* real browsers */
height: 100%; /* IE6: treaded as min-height*/; height: 100%; /* IE6: treaded as min-height*/;
min-height: 100%; /* real browsers */ min-height: 100%; /* real browsers */
@ -31,10 +31,15 @@ body{
background: #f3f3f0 url(../images/header-background.png) center 0 no-repeat; background: #f3f3f0 url(../images/header-background.png) center 0 no-repeat;
} }
/* h1,h2,h3,h4,h5,h6 ------> */ /* h1,h2,h3,h4,h5,h6 ------> */
h2{ h1 {
padding: 10px 0 12px 0; padding: 8px 0 6px 0;
margin: 0; margin: 0;
font-size: 22px; font-size: 1.4em;
}
h2 {
padding: 8px 0 6px 0;
margin: 0;
font-size: 1.3em;
color: #2485ae; color: #2485ae;
} }
h2 a{ h2 a{
@ -47,21 +52,21 @@ h2 a:hover, h2 a:active{
text-decoration: none; text-decoration: none;
} }
h3{ h3{
padding: 10px 0 12px 0; padding: 8px 0 6px 0;
margin: 0; margin: 0;
font-size: 18px; font-size: 1.2m;
color: #2485ae; color: #2485ae;
} }
h4{ h4{
padding: 10px 0 12px 0; padding: 8px 0 6px 0;
margin: 0; margin: 0;
font-size: 16px; font-size: 1.1em;
color: #2485ae; color: #2485ae;
} }
h5{ h5{
padding: 10px 0 12px 0; padding: 8px 0 6px 0;
margin: 0; margin: 0;
font-size: 14px; font-size: 1em;
color: #2485ae; color: #2485ae;
} }
@ -75,6 +80,10 @@ a:visited {
color: #5e6363; color: #5e6363;
} }
code, pre {
font-size: 1em;
}
/* HEADER ------> */ /* HEADER ------> */
#branding { #branding {
position: relative; position: relative;
@ -226,3 +235,7 @@ p{
position: absolute; position: absolute;
left: -9999px; left: -9999px;
} }
ol.alpha {
list-style-type:decimal;
}