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
|
div.summary:before
{
content: "Summary: ";
font-weight: bold;
}
div.summary
{
border-bottom: 1px dotted #e0e0e0;
}
div.description:before
{
content: "Description: ";
font-weight: bold;
}
div.description
{
font-style: italic;
border-bottom: 1px dotted #e0e0e0;
}
div.parameter *
{
font-style: italic;
color: #444;
display: inline;
}
div.exception:before
{
content: "Exception: ";
font-weight: bold;
}
div.seealso:before
{
content: "See also: ";
font-weight: bold;
}
div.seealso
{
font-style: italic;
}
|