stylesheet.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. @import url("http://fonts.googleapis.com/css?family=Roboto");
  2. /*
  3. * This truly is the worst CSS I have ever written.
  4. * It works, though.
  5. */
  6. body {
  7. background: #222;
  8. color: #fff;
  9. }
  10. .tabs, .tabs2, .tabs3 {
  11. background: #333;
  12. }
  13. .tablist li {
  14. background: transparent;
  15. }
  16. .tablist li a {
  17. border: none;
  18. background: none;
  19. transition: all 500ms;
  20. }
  21. .tablist li:hover a {
  22. background: #444;
  23. }
  24. .tablist li.current a {
  25. background: #644;
  26. }
  27. .tablist li a span {
  28. color: #efefef;
  29. text-shadow: none;
  30. font-family: Roboto;
  31. font-weight: normal;
  32. }
  33. .tabs .tablist li a span {
  34. font-size: 14px;
  35. }
  36. .tabs2 .tablist li a span {
  37. font-size: 12px;
  38. }
  39. .navpath {
  40. display: none;
  41. }
  42. .contents a:link, .contents a:visited {
  43. color: #644;
  44. }
  45. .contents a:hover {
  46. text-decoration: none;
  47. }
  48. .header {
  49. display: none;
  50. }
  51. .contents .fragment {
  52. padding: 5px;
  53. background-color: #444;
  54. border: solid 1px rgba(255, 255, 255, 0.2);
  55. }
  56. .contents .fragment .lineno {
  57. background-color: #333;
  58. border: none;
  59. padding-right: 10px;
  60. }
  61. .contents code {
  62. color: #a0a0a0;
  63. }
  64. .ui-resizable-handle {
  65. background: none;
  66. width: 0;
  67. border-right: solid 1px #333;
  68. }
  69. #side-nav {
  70. padding: 0;
  71. }
  72. #nav-tree {
  73. background: none;
  74. }
  75. #nav-tree-contents {
  76. margin: 0px;
  77. }
  78. .contents div.directory {
  79. border: none;
  80. }
  81. .contents table.directory tbody tr {
  82. background: #333;
  83. }
  84. .contents table.directory .entry {
  85. padding: 10px;
  86. }
  87. .contents table.directory .entry .icona,
  88. .contents table.directory .entry span {
  89. display: none !important;
  90. }
  91. .contents .groupheader {
  92. color: #fff;
  93. border-bottom: solid 1px #333;
  94. }
  95. .contents .memberdecls .memItemRight,
  96. .contents .memberdecls .memItemLeft,
  97. .contents .memberdecls .memTemplItemRight,
  98. .contents .memberdecls .memTemplItemLeft {
  99. background: none;
  100. border: none;
  101. text-align: left;
  102. font-family: monospace;
  103. font-size: 14px;
  104. font-weight: normal;
  105. }
  106. .contents .memberdecls .memTemplParams {
  107. background: none;
  108. color: #a0a0a0;
  109. font-family: monospace;
  110. font-size: 12px;
  111. }
  112. .contents .memberdecls .memSeparator {
  113. border: none;
  114. border-top: solid 1px #333;
  115. height: 10px
  116. }
  117. .contents .memitem {
  118. background-color: #333;
  119. }
  120. .contents .memitem .memproto,
  121. .contents .memitem .memdoc {
  122. border: none;
  123. background: none;
  124. box-shadow: none;
  125. }
  126. .contents .memitem .memproto {
  127. border-bottom: solid 1px #222;
  128. }
  129. .contents .memitem .memname {
  130. font-family: monospace;
  131. color: #fff;
  132. text-shadow: none;
  133. font-weight: normal;
  134. font-size: 14px;
  135. }
  136. .contents .memitem .memtemplate {
  137. font-family: monospace;
  138. color: #fff;
  139. text-shadow: none;
  140. font-weight: normal;
  141. font-size: 12px;
  142. }
  143. .contents .mlabel {
  144. border: none;
  145. background: none;
  146. background-color: #222;
  147. border-radius: 0;
  148. font-family: monospace;
  149. font-size: 12px;
  150. color: #fff;
  151. padding: 4px;
  152. }
  153. .contents .paramname {
  154. color: #fff;
  155. }
  156. .inherit_header img {
  157. display: none;
  158. }
  159. .directory .levels {
  160. display: none;
  161. }
  162. .contents .qindex {
  163. background-color: transparent;
  164. border: none;
  165. }
  166. .contents .ah {
  167. border: none;
  168. background: none;
  169. border-radius: 0px;
  170. box-shadow: none;
  171. background-color: #333;
  172. }