1
0
aclindsay.com/css/look.css

140 lines
2.4 KiB
CSS
Raw Normal View History

2011-02-24 14:25:26 -05:00
/**
* These styles handle look
*/
body {
font: 12pt/18pt Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
font-family: 'Cardo', Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
/* font: normal 100% Helvetica, Arial, sans-serif;*/
background-color: #eeeeee;
}
#header {
height: 150px;
width: 100%;
background-color: #88BBEE;
border-bottom: 6px solid #003366;
}
#header-inner {
position: relative;
background: url('../graphics/stripedTree.png') no-repeat bottom left;
2011-02-24 14:25:26 -05:00
height: 100%;
}
#header-inner #title {
margin: 0;
padding: 0;
position: absolute;
height: 53px;
top: 0em;
right: 0em;
font-weight: bold;
font-size: 1.2em;
background: url('../graphics/cornerStripedLeft.png') no-repeat bottom left;
2011-02-24 14:25:26 -05:00
}
#header-inner #title a{
display: block;
margin: 0;
padding: 15px 20px 10px 20px;
text-decoration: none;
color: #ddc;
background: url('../graphics/cornerStripedRight.png') no-repeat top right;
2011-02-24 14:25:26 -05:00
}
#header-inner #title a:hover{
color: #fff;
2011-02-24 14:25:26 -05:00
}
#content {
2011-02-26 10:06:40 -05:00
padding: 1em 0 2em 0;
2011-02-24 14:25:26 -05:00
}
#main {
padding: 0 0 2em 0;
margin: 0;
}
#sidebar {
background-color: #f5f5f5;
margin: 1em 0 1em 0;
border: 2px solid #ccd;
2011-02-24 14:25:26 -05:00
-moz-border-radius: 5px;
border-radius: 5px;
padding: 5px 0 5px 0;
}
#sidebar > * {
margin: .5em;
}
#footer {
margin: 0;
padding: 1em 0 1em 0;
background-color: #339933;
border-top: 6px solid #006600;
border-bottom: 6px solid #663300;
}
#footer a{
color: #003366;
}
#footer a:hover{
color: #000033;
}
div#tabs {
margin: 0;
padding: 0;
position: absolute;
right: 0px;
bottom: 0px;
}
div#tabs ul {
margin: 0;
padding: 0;
list-style: none;
text-align: left;
}
div#tabs ul li {
margin: 0;
padding: 0;
display:inline;
}
div#tabs ul li a {
position: relative;
bottom: 3px;
font-weight: bold;
color: #036;
2011-02-24 14:25:26 -05:00
margin: 0 0 0 17px;
padding: 3px;
text-decoration:none;
background-color: #88BBEE;
}
div#tabs ul li a:hover {
color: #fff;
}
div#tabs ul li a.current {
border-top: #036 2px solid;
2011-02-24 14:25:26 -05:00
}
2011-02-24 14:25:26 -05:00
a {
color: #2288aa;
}
a:hover {
color: #006699;
}
h2 {
font-weight: bold;
margin: 1em 0 1em 0;
border-bottom: 2px solid #ccd;
text-shadow: 3px 3px 3px #bbc;
2011-02-24 14:25:26 -05:00
}
2011-02-25 00:18:40 -05:00
h3 {
font-weight: bold;
margin: 1em 0 1em 0;
border-bottom: 1px solid #ddc;
text-shadow: 2px 2px 3px #bbc;
}
h2 a, h3 a{
text-decoration: none;
2011-02-24 14:25:26 -05:00
}
/* Fix-up for Firefox rendering of Cardo in bold */
@-moz-document url-prefix() {
h2, div#tabs ul li a, #header-inner #title {
letter-spacing: -.08em;
}
2011-02-24 14:25:26 -05:00
}