1
0
aclindsay.com/css/look.css

146 lines
2.6 KiB
CSS

/**
* 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;
height: 100%;
}
#header-inner #title {
margin: 0;
padding: 0;
position: absolute;
height: 53px;
top: 0em;
right: 0em;
font-weight: bold;
font-size: 1.2em;
}
#header-inner #title a {
display: block;
margin: 0;
padding: 15px 20px 10px 20px;
text-decoration: none;
color: #fff;
}
/* Hide graphics when page is too narrow to avoid clashing with main header image */
@media (max-width: 500px) {
#header-inner #title {
background-color: #88BBEE;
background-color: rgba(136, 187, 238, 0.8);
}
}
@media (min-width: 501px) {
#header-inner #title {
background: url('../graphics/cornerStripedLeft.png') no-repeat bottom left;
}
#header-inner #title a {
background: url('../graphics/cornerStripedRight.png') no-repeat top right;
}
}
#header-inner a #title-inner{
color: #d6d6c0;
}
#header-inner a:hover #title-inner{
color: #fff;
}
#content {
padding: 1em 0 2em 0;
}
#main {
padding: 0 0 2em 0;
margin: 0;
}
#sidebar {
background-color: #f5f5f5;
margin: 1em 0 2em 0;
border: 2px solid #ccd;
-moz-border-radius: 5px;
border-radius: 5px;
padding: 5px 0 5px 0;
}
#sidebar > * {
margin: .5em;
}
#footer {
color: #eee;
margin: 0;
padding: 1em 0 1em 0;
background-color: #183366;
border-top: 6px solid #000;
border-bottom: 6px solid #000;
}
#footer a{
color: #ee9;
}
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;
background-color: #88BBEE;
background-color: rgba(136, 187, 238, 0.8);
}
div#tabs ul li {
margin: 10px 0 0 0;
padding: 0;
display: inline-block;
}
div#tabs ul li a {
position: relative;
bottom: 3px;
font-weight: bold;
margin: 0 0 0 17px;
padding: 3px;
text-decoration:none;
color: #357;
}
div#tabs ul li:hover a {
color: #000;
}
div#tabs ul li a.current {
border-top: #036 2px solid;
}
a {
text-decoration: none;
color: #2288aa;
}
a:hover {
text-decoration: underline;
}
h2, h3 {
font-weight: bold;
margin: 1em 0 1em 0;
border-bottom: 2px solid #ccd;
}
h2 a, h3 a, h2 a:hover, h3 a:hover{
text-decoration: none;
}
blockquote {
margin-left: 1em;
padding-left: 1em;
border-left: 4px solid #ccc;
}