stylesheet.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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: 15px;
  53. background-color: #444;
  54. border: none;
  55. }
  56. .contents .fragment .lineno {
  57. display: none;
  58. }
  59. .contents code {
  60. color: #a0a0a0;
  61. }
  62. .ui-resizable-handle {
  63. background: none;
  64. width: 0;
  65. border-right: solid 1px #333;
  66. }
  67. #side-nav {
  68. padding: 0;
  69. }
  70. #nav-tree {
  71. background: none;
  72. }
  73. #nav-tree-contents {
  74. margin: 0px;
  75. }
  76. .contents div.directory {
  77. border: none;
  78. }
  79. .contents table.directory tbody tr {
  80. background: #333;
  81. }
  82. .contents table.directory .entry {
  83. padding: 10px;
  84. }
  85. .contents table.directory .entry .icona,
  86. .contents table.directory .entry span {
  87. display: none !important;
  88. }
  89. .contents .groupheader {
  90. color: #fff;
  91. border-bottom: solid 1px #333;
  92. }
  93. .contents .memberdecls .memItemRight,
  94. .contents .memberdecls .memItemLeft,
  95. .contents .memberdecls .memTemplItemRight,
  96. .contents .memberdecls .memTemplItemLeft {
  97. background: none;
  98. border: none;
  99. text-align: left;
  100. font-family: monospace;
  101. font-size: 14px;
  102. font-weight: normal;
  103. }
  104. .contents .memberdecls .memTemplParams {
  105. background: none;
  106. color: #a0a0a0;
  107. font-family: monospace;
  108. font-size: 12px;
  109. }
  110. .contents .memberdecls .memSeparator {
  111. border: none;
  112. border-top: solid 1px #333;
  113. height: 10px
  114. }
  115. .contents .memitem {
  116. background-color: #333;
  117. }
  118. .contents .memitem .memproto,
  119. .contents .memitem .memdoc {
  120. border: none;
  121. background: none;
  122. box-shadow: none;
  123. }
  124. .contents .memitem .memproto {
  125. border-bottom: solid 1px #222;
  126. }
  127. .contents .memitem .memname {
  128. font-family: monospace;
  129. color: #fff;
  130. text-shadow: none;
  131. font-weight: normal;
  132. font-size: 14px;
  133. }
  134. .contents .memitem .memtemplate {
  135. font-family: monospace;
  136. color: #fff;
  137. text-shadow: none;
  138. font-weight: normal;
  139. font-size: 12px;
  140. }
  141. .contents .mlabel {
  142. border: none;
  143. background: none;
  144. background-color: #222;
  145. border-radius: 0;
  146. font-family: monospace;
  147. font-size: 12px;
  148. color: #fff;
  149. padding: 4px;
  150. }
  151. .contents .paramname {
  152. color: #fff;
  153. }
  154. .inherit_header img {
  155. display: none;
  156. }
  157. .directory .levels {
  158. display: none;
  159. }
  160. .contents .qindex {
  161. background-color: transparent;
  162. border: none;
  163. }
  164. .contents .ah {
  165. border: none;
  166. background: none;
  167. border-radius: 0px;
  168. box-shadow: none;
  169. background-color: #333;
  170. }