Extra "ports" of juce-based plugins using the distrho build system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

334 lines
6.9KB

  1. /* BEGIN RESET
  2. Copyright (c) 2010, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.com/yui/license.html
  5. version: 2.8.2r1
  6. */
  7. html {
  8. color: #000;
  9. background: #FFF;
  10. }
  11. body {
  12. text-align: center;
  13. }
  14. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. table {
  19. border-collapse: collapse;
  20. border-spacing: 0;
  21. }
  22. fieldset,img {
  23. border: 0;
  24. }
  25. address,caption,cite,code,dfn,em,strong,th,var,optgroup {
  26. font-style: inherit;
  27. font-weight: inherit;
  28. }
  29. del,ins {
  30. text-decoration: none;
  31. }
  32. li {
  33. list-style: bullet;
  34. margin-left: 20px;
  35. }
  36. caption,th {
  37. text-align: left;
  38. }
  39. h1,h2,h3,h4,h5,h6 {
  40. font-size: 100%;
  41. font-weight: bold;
  42. }
  43. q:before,q:after {
  44. content: '';
  45. }
  46. abbr,acronym {
  47. border: 0;
  48. font-variant: normal;
  49. }
  50. sup {
  51. vertical-align: baseline;
  52. }
  53. sub {
  54. vertical-align: baseline;
  55. }
  56. legend {
  57. color: #000;
  58. }
  59. input,button,textarea,select,optgroup,option {
  60. font-family: inherit;
  61. font-size: inherit;
  62. font-style: inherit;
  63. font-weight: inherit;
  64. }
  65. input,button,textarea,select {*font-size:100%;
  66. }
  67. /* END RESET */
  68. body {
  69. margin-left: 1em;
  70. margin-right: 1em;
  71. font-family: arial, helvetica, geneva, sans-serif;
  72. background-color: #ffffff; margin: 0px;
  73. }
  74. code, tt { font-family: monospace; }
  75. span.parameter { font-family:monospace; }
  76. span.parameter:after { content:":"; }
  77. span.types:before { content:"("; }
  78. span.types:after { content:")"; }
  79. .type { font-weight: bold; font-style:italic }
  80. body, p, td, th { font-size: .95em; line-height: 1.2em;}
  81. p, ul { margin: 10px 0 0 0px;}
  82. strong { font-weight: bold;}
  83. em { font-style: italic;}
  84. h1 {
  85. font-size: 1.5em;
  86. margin: 10px 0 20px 0;
  87. }
  88. h2, h3, h4 { margin: 15px 0 10px 0; }
  89. h2 {
  90. border-bottom: 2px solid #ccc;
  91. font-size: 1.25em;
  92. margin: 19px 0 12px;
  93. }
  94. h3 { font-size: 1.15em; }
  95. h4 { font-size: 1.06em; }
  96. a:link { font-weight: bold; color: #004080; text-decoration: none; }
  97. a:visited { font-weight: bold; color: #006699; text-decoration: none; }
  98. a:link:hover { text-decoration: underline; }
  99. hr {
  100. color:#cccccc;
  101. background: #00007f;
  102. height: 1px;
  103. }
  104. blockquote { margin-left: 3em; }
  105. ul { list-style-type: disc; }
  106. p.name {
  107. font-family: Consolas, monaco, monospace;
  108. padding-top: 1em;
  109. }
  110. pre.example {
  111. background-color: rgb(245, 245, 245);
  112. border: 1px solid silver;
  113. padding: 10px;
  114. margin: 10px 0 10px 0;
  115. font-family: Consolas, monaco, monospace;
  116. font-size: .85em;
  117. }
  118. pre {
  119. background-color: rgb(245,245,255);
  120. border: 1px solid #cccccc;
  121. padding: 10px;
  122. margin: 10px 0 10px 0;
  123. overflow: auto;
  124. font-family: Consolas, monaco, monospace;
  125. -moz-tab-size: 4;
  126. -o-tab-size: 4;
  127. tab-size: 4;
  128. font-size: 14px;
  129. }
  130. table.index { border: 1px #00007f; }
  131. table.index td { text-align: left; vertical-align: top; }
  132. #container {
  133. /*margin-left: 1em;
  134. margin-right: 1em;
  135. background-color: #f4f4ff;*/
  136. display: inline-block;
  137. margin: 0 auto;
  138. text-align: left;
  139. }
  140. #product {
  141. text-align: center;
  142. border-bottom: 1px solid #cccccc;
  143. background-color: #ffffff;
  144. }
  145. #product big {
  146. font-size: 2em;
  147. }
  148. #main {
  149. background-color:#FFFFFF;
  150. /*border-left: 2px solid #cccccc;*/
  151. }
  152. #navigation {
  153. float: left;
  154. width: 14em;
  155. vertical-align: top;
  156. background-color:#FFFFFF;
  157. overflow: visible;
  158. }
  159. #navigation h2 {
  160. background-color:#FFFFFF;
  161. font-size:1.1em;
  162. color:#000000;
  163. text-align: left;
  164. padding:0.2em;
  165. /*border-top:1px solid #dddddd;*/
  166. border-bottom:1px solid #dddddd;
  167. }
  168. #navigation ul
  169. {
  170. font-size:1em;
  171. list-style-type: none;
  172. margin: 1px 1px 10px 1px;
  173. }
  174. #navigation li {
  175. text-indent: -1em;
  176. display: block;
  177. margin: 3px 0px 0px 22px;
  178. word-wrap: break-word;
  179. }
  180. #navigation li li a {
  181. margin: 0px 3px 0px -1em;
  182. }
  183. #content {
  184. margin-left: 14em;
  185. padding: 1em;
  186. width: 700px;
  187. border-left: 2px solid #cccccc;
  188. /*border-right: 2px solid #cccccc;*/
  189. background-color: #ffffff;
  190. }
  191. #about {
  192. clear: both;
  193. padding: 5px;
  194. border-top: 2px solid #cccccc;
  195. background-color: #ffffff;
  196. }
  197. @media print {
  198. body {
  199. font: 12pt "Times New Roman", "TimeNR", Times, serif;
  200. }
  201. a { font-weight: bold; color: #004080; text-decoration: underline; }
  202. #main {
  203. background-color: #ffffff;
  204. border-left: 0px;
  205. }
  206. #container {
  207. margin-left: 2%;
  208. margin-right: 2%;
  209. background-color: #ffffff;
  210. }
  211. #content {
  212. padding: 1em;
  213. background-color: #ffffff;
  214. }
  215. #navigation {
  216. display: none;
  217. }
  218. pre.example {
  219. font-family: Consolas, monaco, monospace;
  220. font-size: 10pt;
  221. page-break-inside: avoid;
  222. }
  223. }
  224. table.module_list {
  225. border-width: 1px;
  226. border-style: solid;
  227. border-color: #cccccc;
  228. border-collapse: collapse;
  229. }
  230. table.module_list td {
  231. border-width: 1px;
  232. padding: 3px;
  233. border-style: solid;
  234. border-color: #cccccc;
  235. }
  236. table.module_list td.name { background-color: #f4f4ff; ; min-width: 200px; }
  237. table.module_list td.summary { width: 100%; }
  238. table.function_list {
  239. border-width: 1px;
  240. border-style: solid;
  241. border-color: #cccccc;
  242. border-collapse: collapse;
  243. }
  244. table.function_list td {
  245. border-width: 1px;
  246. padding: 3px;
  247. border-style: solid;
  248. border-color: #cccccc;
  249. }
  250. table.function_list td.name { background-color: #f6f6ff; ; min-width: 200px; padding: 7px 5px; }
  251. table.function_list td.summary { width: 100%; }
  252. dl.table dt, dl.function dt {
  253. background-color: #f4f4ff;
  254. border-bottom: 1px solid #ccc;
  255. border-left: 1px solid #ccc;
  256. border-top: 1px solid #ccc;
  257. padding: 0.7em 0 0.5em 1em;
  258. }
  259. dl.table dd, dl.function dd {padding-bottom: 1em; margin: 10px 0 0 20px;}
  260. dl.table h3, dl.function h3 {font-size: .95em;}
  261. ul.nowrap {
  262. overflow:auto;
  263. whitespace:nowrap;
  264. }
  265. /* stop sublists from having initial vertical space */
  266. ul ul { margin-top: 0px; }
  267. ol ul { margin-top: 0px; }
  268. ol ol { margin-top: 0px; }
  269. ul ol { margin-top: 0px; }
  270. /* styles for prettification of source */
  271. pre .comment { color: #558817; }
  272. pre .constant { color: #a8660d; }
  273. pre .escape { color: #844631; }
  274. pre .keyword { color: #2239a8; font-weight: bold; }
  275. pre .library { color: #0e7c6b; }
  276. pre .marker { color: #512b1e; background: #fedc56; font-weight: bold; }
  277. pre .string { color: #a8660d; }
  278. pre .number { color: #f8660d; }
  279. pre .operator { color: #2239a8; font-weight: bold; }
  280. pre .preprocessor, pre .prepro { color: #a33243; }
  281. pre .global { color: #800080; }
  282. pre .prompt { color: #558817; }
  283. pre .url { color: #272fc2; text-decoration: underline; }
  284. .wrapman { display: inline-block; white-space: normal; min-width: 460px; }
  285. .proto_subtitle {color: #888; position: relative; top: -12px;}
  286. .function_list .proto_prefix {color: #789;}
  287. .osarlogo {
  288. display: block;
  289. width: 132px;
  290. height: 121px;
  291. background: url("osar-121.png") no-repeat scroll 0 0 transparent;
  292. margin: 0 auto;
  293. }