30 lines
303 B
CSS
30 lines
303 B
CSS
|
|
.member {
|
|
color: brown;
|
|
}
|
|
|
|
.function {
|
|
color: darkgreen;
|
|
}
|
|
|
|
.member, .function {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.paramlist {
|
|
color: black;
|
|
}
|
|
|
|
.param {
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
.table-attr {
|
|
color: darkblue;
|
|
}
|
|
|
|
.params, .table-attr {
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|