123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- /*
- $Id: fpdoc.cst,v 1.1 2005/01/02 16:22:16 michael Exp $
- Default style sheet for FPDoc reference documentation
- by Sebastian Guenther, [email protected]
- Feel free to use this file as a template for your own style sheets.
- */
- body {
- background: white
- }
- body, p, th, td, caption, h1, h2, h3, ul, ol, dl {
- color: black;
- font-family: sans-serif
- }
- tt, span.kw, pre {
- font-family: Courier, monospace
- }
- body, p, th, td, caption, ul, ol, dl, tt, span.kw, pre {
- font-size: 14px
- }
- A:link {
- color: blue
- }
- A:visited {
- color: darkblue
- }
- A:active {
- color: red
- }
- A {
- text-decoration: none
- }
- A:hover {
- text-decoration: underline
- }
- h1, h2, td.h2 {
- color: #005A9C
- }
- /* Especially for Netscape on Linux: */
- h3, td.h3 {
- font-size: 12pt
- }
- /* source fragments */
- span.code {
- white-space: nowrap
- }
- /* symbols in source fragments */
- span.sym {
- color: darkred
- }
- /* No wordwrap in code fragments */
- span.code {
- white-space: nowrap
- }
- /* keywords in source fragments */
- span.kw {
- font-weight: bold
- }
- /* comments in source fragments */
- span.cmt {
- color: darkcyan;
- font-style: italic
- }
- /* directives in source fragments */
- span.dir {
- color: darkyellow;
- font-style: italic
- }
- /* numbers in source fragments */
- span.num {
- color: darkmagenta
- }
- /* characters (#...) in source fragments */
- span.chr {
- color: darkcyan
- }
- /* strings in source fragments */
- span.str {
- color: blue
- }
- /* assembler passages in source fragments */
- span.asm {
- color: green
- }
- td.pre {
- white-space: pre
- }
- p.cmt {
- color: gray
- }
- span.warning {
- color: red;
- font-weight: bold
- }
- /* !!!: How should we define this...? */
- span.file {
- color: darkgreen
- }
- table.remark {
- background-color: #ffffc0;
- }
- table.bar {
- background-color: #a0c0ff;
- }
- td p {
- margin: 0;
- }
- span.bartitle {
- font-weight: bold;
- font-style: italic;
- color: darkblue
- }
- span.toggletreeclose {
- background: url(minus.png) center left no-repeat;
- padding-left: 20px;
- }
- span.toggletreeopen {
- background: url(plus.png) center left no-repeat;
- padding-left: 20px;
- }
- ul.classtreelist li { padding-left: 0px; }
- ul.classtreelist { list-style-type:none; }
- li.classtree ul { display: block; }
- li.classtreeclosed ul { display: none; }
|