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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/*
Navigation Style Sheet for the W3C Markup Validation Service.
Copyright 2000-2006 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
$Id: navbar.css,v 1.22.2.1 2006/01/26 20:35:24 ville Exp $
*/
#menu {
background-color: #005A9C;
margin: 0;
padding: 0;
/*margin-left: 42px;*/
padding-top:3px;
padding-bottom: 3px;
line-height: 140%;
vertical-align: bottom;
font-size: 0.9em;
list-style-type: none;
}
#menu { padding-left: 1em; padding-right: 1em}
#menu li {
display: inline;
}
#menu li a {
padding-right: 1.2em;
padding-left: 1.2em;
color: white;
}
/* Jump Bar - results page*/
#jumpbar {
background-color: #dfebf7;
float: right;
width: 8em;
margin-right: 0;
text-align: left;
text-decoration: none;
padding: 1ex;
border-left: 1px solid #005A9C;
border-bottom: 1px solid #005A9C;
margin-top: -15px;
font-size: 0.9em;
font-weight: bold;
margin-left: 1em;
}
#jumpbar ul {
padding: 0;
margin: 0;
}
#jumpbar li {
list-style-type: none;
text-align: right;
}
div#jumpbar li a {
height: 20px;
padding-right: 20px;
padding-left: 25px;
}
div#jumpbar li a:hover {
text-decoration: underline;
}
#jumpbar li a:link, #jumpbar li a:visited {
text-decoration: none;
text-align: right;
display: block;
width: 8em;
padding: 2px 0px;
margin: 0;
border-top: dotted 1px #053188;
}
#jumpbar li a#selected:link, #jumpbar li a#selected:visited {
text-decoration: underline;
background-color: #fff;
color: #053188;
border-right: solid 1px #ddd;
border-bottom: solid 1px #fff;
}
|