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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/* CSS stylesheet */
ladspa:before {
content: "LADSPA Plugin Details";
margin: 0.5em 0em;
display: block;
font-size: 16pt;
font-weight: bold;
font-family: helvetica;
}
ladspa {
display: block;
color: black;
margin: 0em 0.5em 0.5em 0.5em;
text-align: left;
font-size: 10pt;
background-color: white;
}
plugin > name {
display: block;
color: black;
margin: 0.5em 0em;
font-weight: bold;
font-family: helvetica;
font-size: 12pt;
}
plugin > name:after {
content: " (ID " counters(id, ".") ")";
}
port > name:before {
content: "Port: ";
}
port > name {
display: block;
color: black;
margin: 0.5em 0.5em;
font-weight: bold;
font-family: helvetica;
font-size: 12pt;
}
port > range:before {
display: block;
margin: 0.5em 1em;
content: "Range: " attr(min) " - " attr(max);
font-size: 10pt;
}
range {
display: block;
}
global {
font-size: 10pt;
}
port:after {
content: "Label: " attr(label) " (" attr(type) " " attr(dir) ")";
display: block;
margin: 0.5em 1em;
font-size: 10pt;
}
code:before {
margin: 0em -0.5em;
content: "Global code ";
display: block;
font-family: helvetica;
font-weight: bold;
font-size: 12pt;
}
code {
font-size: 10pt;
font-family: courier;
display: block;
white-space: pre;
margin: 0.5em 1em;
}
callback:before {
margin: 0em -0.5em;
content: "Callback: " attr(event);
display: block;
font-family: helvetica;
font-weight: bold;
font-size: 12pt;
}
callback {
font-size: 10pt;
font-family: courier;
display: block;
white-space: pre;
margin: 0.5em 1em;
}
meta.first {
display: block;
content: "Metadata";
}
meta:after {
margin: 0em 1em;
text-transform: capitalize;
content: attr(name) ": " attr(value);
display: block;
}
meta {
display: block;
}
p {
display: block;
margin: 0.5em 1em;
}
|