docs: use stylesheet from fpc in an attempt to avoid double lines

git-svn-id: trunk@32727 -
This commit is contained in:
vincents 2011-10-07 07:47:29 +00:00
parent ae0edb7828
commit 2333a0cfbe

View File

@ -53,6 +53,11 @@ h3, td.h3 {
font-size: 12pt font-size: 12pt
} }
/* source fragments */
span.code {
white-space: nowrap
}
/* symbols in source fragments */ /* symbols in source fragments */
span.sym { span.sym {
color: darkred color: darkred
@ -128,26 +133,34 @@ span.bartitle {
color: darkblue color: darkblue
} }
span.footer {
font-style: italic;
color: darkblue
}
/* definition list */ /* definition list */
dl { dl {
border: 3px double #ccc; border: 3px double #ccc;
padding: 0.5em; padding: 0.5em;
} }
/* definition list: term */ /* definition list: term */
dt { dt {
float: left; float: left;
clear: left; clear: left;
width: auto; /* normally browsers default width of largest item */ width: auto; /* normally browsers default width of largest item */
padding-right: 20px; padding-right: 20px;
font-weight: bold; font-weight: bold;
color: darkgreen; color: darkgreen;
} }
/* definition list: description */ /* definition list: description */
dd { dd {
margin: 0 0 0 110px; margin: 0 0 0 110px;
padding: 0 0 0.5em 0; padding: 0 0 0.5em 0;
} }
/* for browsers in standards compliance mode */
td p {
margin: 0;
}