| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /* General Styles */
- body {
- font-family: "Bitstream Vera Sans", Verdana, sans-serif;
- font-size: 81.25%;
- line-height: 1.23em;
- padding: 0;
- margin: 1.23em;
- background: white;
- color: black;
- }
- a {
- color: #04a;
- text-decoration: none;
- }
- a:visited {
- color: #04a;
- }
- a:hover {
- color: #a40;
- text-decoration: underline;
- }
- a:active {
- color: #c00;
- }
- code, pre {
- font-size: 1.2em;
- }
- pre {
- background: #F0F0F0;
- padding: 0.5em 1em;
- }
- /* Top bar */
- #container {
- width: 100%;
- margin: auto;
- }
- #topnav {
- height: 55px;
- background: url(/doc/logo.png) no-repeat top left;
- }
- a#logo-box {
- display: block;
- height: 55px;
- }
- h1#title {
- display: none;
- }
- #nav-main {
- float: right;
- width: 500px;
- margin-top: -5px;
- text-align: center;
- }
- #nav-main ul {
- padding-left: 0;
- margin-left: 0;
- margin-bottom: 0.5em;
- }
- #nav-main li a {
- display: inline;
- display: inline-block;
- padding: .46em .62em .38em .62em;
- }
- #nav-main li a:link,
- #nav-main li a:visited {
- color: #000;
- }
- #nav-main li {
- display: inline;
- display: inline-block;
- background: #e6e6e6 url(/doc/button_background.png) repeat-x;
- border: solid 1px #999;
- margin-left: -1px;
- text-shadow: #fff 0 1px 0;
- box-shadow: 0 1px 1px #ccc;
- -moz-box-shadow: 0 1px 1px #ccc;
- -webkit-box-shadow: 0 1px 1px #ccc;
- }
- #nav-main li:first-child {
- -moz-border-top-left-radius: 4px;
- border-top-left-radius: 4px;
- -moz-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- }
- #nav-main li:last-child {
- -moz-border-top-right-radius: 4px;
- border-top-right-radius: 4px;
- -moz-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- #nav-main .quickref {
- color: #444;
- }
- #nav-main .quickref .sep {
- color: #999;
- }
- #search {
- width: 120px;
- margin-left: 0.5em;
- }
- #search.inactive {
- text-align: center;
- color: #444;
- }
- /* Footer */
- #site-info {
- position: relative;
- text-align: center;
- }
- #site-info, #site-info a:link, #site-info a:visited {
- color: #aaa;
- }
- /* Content */
- #content {
- clear: both;
- padding: 0;
- position: relative;
- margin-top: 1.5em;
- margin-bottom: 1.5em;
- border-top: solid 1px #aaa;
- border-bottom: solid 1px #aaa;
- }
- .left-column {
- width: 49%;
- float: left;
- }
- .right-column {
- width: 49%;
- float: right;
- }
- .end-columns {
- clear: both;
- }
- #content h1 {
- margin-bottom: -0em;
- padding: 0;
- }
- #content h2 {
- border-top: 2px solid #ddd;
- padding: 8px 0;
- margin: 1.5em 0 0;
- }
- #content .subtitle {
- margin-top: 1em;
- display: block;
- }
- .navtop a {
- font-weight: normal; font-size: 7pt;
- float: right; color: #999;
- }
- /* Content and Code Highlighting */
- pre.ebnf, pre.grammar {
- background: #FFFFE0;
- }
- span.ln {
- font-size: 80%;
- color: #777777;
- }
- span.comment {
- color: #002090;
- }
- span.highlight {
- background: #FF9900;
- font-weight: bold;
- }
- span.highlight-comment {
- background: #FF9900;
- font-weight: bold;
- color: #002090;
- }
- span.selection {
- background: #FFFF00
- }
- span.selection-comment {
- color: #002090;
- background: #FFFF00
- }
- span.selection-highlight {
- background: #FF9900;
- font-weight: bold;
- }
- span.selection-highlight-comment {
- background: #FF9900;
- font-weight: bold;
- color: #002090;
- }
- span.alert {
- color: #D00000;
- }
- #nav table {
- width: 100%;
- }
- .detail {
- padding: 0.25em 1em;
- background: #F4F4F4;
- }
- sup.new {
- color: red;
- font-size: 8px;
- line-height: 0;
- }
|