libcm is a C development framework with an emphasis on audio signal processing applications.
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.

style.css 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. body {
  2. margin: auto;
  3. padding-right: 1em;
  4. padding-left: 1em;
  5. max-width: 55em;
  6. border-left: 1px solid black;
  7. border-right: 1px solid black;
  8. color: black;
  9. background: #F8F5EC;
  10. font-family: Arial, Helvetica, sans-serif;
  11. font-size: 90%;
  12. font-weight: normal
  13. line-height: 100%;
  14. color: #333333;
  15. }
  16. pre {
  17. border: 1px dotted gray;
  18. background-color: #ececec;
  19. color: #1111111;
  20. padding: 0.5em;
  21. }
  22. code {
  23. font-family: monospace;
  24. line-height: 100%;
  25. }
  26. h1 a, h2 a, h3 a, h4 a, h5 a {
  27. text-decoration: none;
  28. color: #660000;
  29. }
  30. h1, h2, h3, h4, h5 { font-family: verdana;
  31. font-weight: bold;
  32. color: #660000; }
  33. h1 {
  34. font-size: 100%;
  35. border-bottom: 1px solid black;
  36. }
  37. h2 {
  38. font-size: 100%;
  39. color:$660000;
  40. }
  41. h3 {
  42. font-size: 95%;
  43. }
  44. h4 {
  45. font-size: 90%;
  46. font-style: italic;
  47. }
  48. h5 {
  49. font-size: 90%;
  50. font-style: italic;
  51. }
  52. h1.title {
  53. font-size: 200%;
  54. font-weight: bold;
  55. padding-top: 0.2em;
  56. padding-bottom: 0.2em;
  57. text-align: left;
  58. border: none;
  59. }
  60. dt code {
  61. font-weight: bold;
  62. }
  63. dd p {
  64. margin-top: 0;
  65. }
  66. #footer {
  67. padding-top: 1em;
  68. font-size: 70%;
  69. color: gray;
  70. text-align: center;
  71. }
  72. table {
  73. width: 100%;
  74. background-color: #acacac;
  75. text-align:left;
  76. }
  77. table .odd {
  78. background-color: #f7f7f7;
  79. }
  80. table .even {
  81. background-color: #ececec;
  82. }
  83. a:link { color:inherit; font-weight:bold; text-decoration: none; }
  84. a:active { color:inherit; font-weight:bold; text-decoration: none; }
  85. a:visited { color:inherit; font-weight:bold; text-decoration: none; }
  86. a:hover { color:inherit; font-weight:bold; text-decoration: none; }
  87. td.linenos { background-color: #f0f0f0; padding-right: 10px; }
  88. span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; }
  89. pre { line-height: 125%; }
  90. span.hll { background-color: #ffffcc }
  91. span.c { color: #008800; font-style: italic } /* Comment */
  92. span.err { border: 1px solid #FF0000 } /* Error */
  93. span.k { color: #AA22FF; font-weight: normal } /* Keyword */
  94. span.o { color: #666666 } /* Operator */
  95. span.cm { color: #FF0000; font-style: italic } /* Comment.Multiline */
  96. span.cp { color: #8000FF } /* Comment.Preproc */
  97. span.c1 { color: #FF0000; font-style: italic } /* Comment.Single */
  98. span.cs { color: #FF0000; font-weight: bold } /* Comment.Special */
  99. span.gd { color: #A00000 } /* Generic.Deleted */
  100. span.ge { font-style: italic } /* Generic.Emph */
  101. span.gr { color: #FF0000 } /* Generic.Error */
  102. span.gh { color: #000080; font-weight: bold } /* Generic.Heading */
  103. span.gi { color: #00A000 } /* Generic.Inserted */
  104. span.go { color: #808080 } /* Generic.Output */
  105. span.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
  106. span.gs { font-weight: bold } /* Generic.Strong */
  107. span.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
  108. span.gt { color: #0040D0 } /* Generic.Traceback */
  109. span.kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */
  110. span.kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */
  111. span.kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */
  112. span.kp { color: #AA22FF } /* Keyword.Pseudo */
  113. span.kr { color: #008800; font-weight: normal } /* Keyword.Reserved */
  114. span.kt { color: #008800; font-weight: normal } /* Keyword.Type */
  115. span.m { color: #666666 } /* Literal.Number */
  116. span.s { color: #BB4444 } /* Literal.String */
  117. span.na { color: #BB4444 } /* Name.Attribute */
  118. span.nb { color: #AA22FF } /* Name.Builtin */
  119. span.nc { color: #0000FF } /* Name.Class */
  120. span.no { color: #DF3A01 } /* Name.Constant */
  121. span.nd { color: #AA22FF } /* Name.Decorator */
  122. span.ni { color: #999999; font-weight: bold } /* Name.Entity */
  123. span.ne { color: #D2413A; font-weight: bold } /* Name.Exception */
  124. span.nf { color: #0000FF } /* Name.Function */
  125. span.nl { color: #A0A000 } /* Name.Label */
  126. span.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
  127. span.nt { color: #008000; font-weight: bold } /* Name.Tag */
  128. span.nv { color: #B8860B } /* Name.Variable */
  129. span.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
  130. span.w { color: #bbbbbb } /* Text.Whitespace */
  131. span.mf { color: #666666 } /* Literal.Number.Float */
  132. span.mh { color: #666666 } /* Literal.Number.Hex */
  133. span.mi { color: #666666 } /* Literal.Number.Integer */
  134. span.mo { color: #666666 } /* Literal.Number.Oct */
  135. span.sb { color: #BB4444 } /* Literal.String.Backtick */
  136. span.sc { color: #BB4444 } /* Literal.String.Char */
  137. span.sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */
  138. span.s2 { color: #BB4444 } /* Literal.String.Double */
  139. span.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
  140. span.sh { color: #BB4444 } /* Literal.String.Heredoc */
  141. span.si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
  142. span.sx { color: #008000 } /* Literal.String.Other */
  143. span.sr { color: #BB6688 } /* Literal.String.Regex */
  144. span.s1 { color: #BB4444 } /* Literal.String.Single */
  145. span.ss { color: #B8860B } /* Literal.String.Symbol */
  146. span.bp { color: #AA22FF } /* Name.Builtin.Pseudo */
  147. span.vc { color: #B8860B } /* Name.Variable.Class */
  148. span.vg { color: #B8860B } /* Name.Variable.Global */
  149. span.vi { color: #B8860B } /* Name.Variable.Instance */
  150. span.il { color: #666666 } /* Literal.Number.Integer.Long */