您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

libcaca.css 7.3 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. /*
  2. */
  3. /* = styles généraux = */
  4. body {
  5. background: #552701 /*url(/browser/web/trunk/static/img/libcaca.png?format=raw) no-repeat top center*/;
  6. color: white;
  7. width: 100%;
  8. padding: 0;
  9. margin: 0;
  10. }
  11. body, td, th, h1, h2, h3, h4, #main {
  12. font-family: "URW Gothic L", Helvetica, Verdana;
  13. }
  14. .corps {
  15. margin: 0 5%;
  16. min-width: 750px;
  17. position: relative;
  18. }
  19. h1, h2, h3 {
  20. border-style: solid;
  21. background-color: inherit;
  22. font-variant: small-caps;
  23. border-width: 0 0 2px 0;
  24. border-color: #984601;
  25. color: #984601;
  26. }
  27. h1 {
  28. font-size: 1.6em;
  29. }
  30. h2 {
  31. font-size: 1.3em;
  32. }
  33. h3 {
  34. font-size: 1.1em;
  35. }
  36. p, dd, dd, ol, ul {
  37. text-align: inherit;
  38. font-size: 1em;
  39. }
  40. :link, :visited {
  41. color: #984601;
  42. border-bottom: none;
  43. }
  44. :link:hover, :visited:hover {
  45. color: #2C1F1C;
  46. background-color: inherit;
  47. }
  48. dt em {
  49. border-bottom:none;
  50. color: #984601;
  51. font-style:normal;
  52. text-decoration:none;
  53. }
  54. /* = HEADER = */
  55. .nav ul {
  56. text-align: right;
  57. font-size: 12px;
  58. }
  59. .nav li.last {
  60. border-right: none !important;
  61. }
  62. #main {
  63. background: #fff;
  64. color: #2C1F1C;
  65. padding: 0 1em;
  66. }
  67. #header img {
  68. margin: 0 0 -30px;
  69. width: 540px;
  70. }
  71. #siteheader, #banner, #mainnav, .nav {
  72. font-family:"Arial","Geneva",sans-serif;
  73. }
  74. /* == MENU PRINCIPAL == */
  75. #mainnav {
  76. margin: 0;
  77. background: #C46300;
  78. -moz-border-radius-topleft: 5px;
  79. -moz-border-radius-topright: 5px;
  80. border: none;
  81. font-size: 12px;
  82. }
  83. #mainnav li {
  84. border-right-color: #984601;
  85. padding: 0.25em 0;
  86. }
  87. #mainnav :link, #mainnav :visited {
  88. background-image: none;
  89. border-color: #984601;
  90. padding-left: 8px; padding-right: 8px;
  91. }
  92. #mainnav :link,
  93. #mainnav :visited,
  94. #mainnav :link:hover,
  95. #mainnav :visited:hover,
  96. #mainnav .active :link,
  97. #mainnav .active :visited,
  98. #mainnav .active :link:hover, #mainnav .active :visited:hover {
  99. border-right: none;
  100. }
  101. #mainnav li.last,
  102. #mainnav li.last :link:hover,
  103. #mainnav li.last :visited:hover,
  104. #mainnav li.last.active :link,
  105. #mainnav li.last.active :visited,
  106. #mainnav li.last.active :link:hover,
  107. #mainnav li.last.active :visited:hover {
  108. -moz-border-radius-topright: 5px;
  109. }
  110. #mainnav .active :link, #mainnav .active :visited {
  111. background: #984601;
  112. color: #2C1F1C;
  113. }
  114. #mainnav :link:hover, #mainnav :visited:hover, #mainnav .active :link:hover, #mainnav .active :visited:hover {
  115. background: #2C1F1C;
  116. color: #C46300;
  117. }
  118. /* == Subnav == */
  119. #metanav ul {
  120. position: absolute;
  121. top: 0.3em;
  122. right: 0;
  123. }
  124. #metanav :link:hover, #metanav :visited:hover {
  125. color: #C46300;
  126. background: inherit;
  127. }
  128. #loginguest a:hover, #metanav :link, #metanav :visited {
  129. color: #fff;
  130. }
  131. #siteheader p {
  132. margin-top: 0.3em;
  133. }
  134. #siteheader .nav :link, #siteheader .nav :visited {
  135. color: #C46300;
  136. }
  137. #siteheader .nav :visited:hover, #siteheader .nav :link:hover {
  138. color: #C46300;
  139. background: #552701;
  140. border-bottom: 1px dotted #C46300;
  141. }
  142. #ctxtnav ul {
  143. padding: 0.2em 0;
  144. }
  145. /* = FOOTER = */
  146. #footer {
  147. display: none;
  148. }
  149. /* = PAGES ET MODULES = */
  150. /* == Styles for images in documentation and articles == */
  151. img.inline, img.inlinetop {
  152. border: solid 2px;
  153. padding: 2px;
  154. }
  155. img.inlinetop {
  156. vertical-align: top;
  157. }
  158. img.math {
  159. vertical-align: middle;
  160. margin-left: 10px;
  161. margin-right: 10px;
  162. }
  163. img.matrix {
  164. vertical-align: top;
  165. margin-right: 30px;
  166. margin-top: 10px;
  167. }
  168. /* == FORMS == */
  169. input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
  170. background: #984601;
  171. }
  172. input[type="button"], input[type="submit"], input[type="reset"] {
  173. background: #C46300;
  174. border: 1px solid #984601;
  175. -moz-border-radius: 4px;
  176. }
  177. input[type="text"], input.textwidget, textarea {
  178. border: 1px solid #C46300;
  179. }
  180. legend {
  181. color: #984601;
  182. }
  183. fieldset {
  184. border: 1px solid #984601;
  185. background: #E5DCDC;
  186. padding: 0.2em;
  187. }
  188. #content.ticket, #content.milestone, {
  189. margin: 0 auto;
  190. }
  191. .buttons {
  192. text-align: center;
  193. }
  194. .buttons input {
  195. margin: 0.5em;
  196. }
  197. #content.ticket fieldset, #edit fieldset {
  198. background: #E5DCDC;
  199. border: 1px solid #984601 !important;
  200. padding: 0.2em;
  201. }
  202. #field-description {
  203. background: #fff url(/browser/web/trunk/static/img/dashit-light.png?format=raw) no-repeat right bottom;
  204. }
  205. #attachments {
  206. background: #fff;
  207. border: none;
  208. }
  209. #attachfile {
  210. text-align: center;
  211. }
  212. #changelog {
  213. background: #cccc88;
  214. border: 1px solid #C46300;
  215. }
  216. a.ext-link .icon {
  217. background-position: right center;
  218. padding-right: 16px;
  219. }
  220. /* === FORM TICKETS === */
  221. #preview h3, #changelog h3 {
  222. border-bottom:1px solid #984601;
  223. color:#552701;
  224. font-size:100%;
  225. font-weight:bold;
  226. }
  227. #ticket {
  228. background: #E0E095;
  229. border: 1px solid #C46300;
  230. }
  231. #ticket .date p {
  232. margin: 6px;
  233. color: #984601;
  234. }
  235. form #comment {
  236. width: 692px;
  237. }
  238. #ticket table.properties tr {
  239. border-bottom: 1px dotted #C46300;
  240. }
  241. #content.ticket fieldset {
  242. border: 1px solid #C46300;
  243. }
  244. .wikitoolbar {
  245. width: 252px;
  246. }
  247. .wikitoolbar :link, .wikitoolbar :visited {
  248. border: 1px solid #C46300;
  249. margin-left: 2px
  250. }
  251. /* == search == */
  252. #content.search #results dt a {
  253. color: #984601;
  254. }
  255. #content.search #results .author, #results .date {
  256. color: #984601;
  257. font-style: italic;
  258. }
  259. .searchword0 {
  260. background: #FFBB22;
  261. color: #552701;
  262. }
  263. #content.search #results dd {
  264. font-size: 1em;
  265. }
  266. #content .paging .current, #content .paging .current :hover {
  267. border: 1px solid #984601;
  268. background: #984601;
  269. }
  270. #content .paging :link, #content .paging :visited {
  271. border: 1px solid #984601;
  272. color: #984601;
  273. }
  274. #content .paging :link:hover, #content .paging :visited:hover {
  275. background: #FFBB22;
  276. color: #984601;
  277. border: 1px solid #984601;
  278. }
  279. #content .paging .previous a,
  280. #content .paging .next a,
  281. #content .paging .previous a:hover, #content .paging .next a:hover {
  282. border: none;
  283. }
  284. #content .paging .previous a:hover, #content .paging .next a:hover {
  285. color: #FFBB22;
  286. }
  287. /* roadmap */
  288. .milestone .info .date, .milestone .info h2 em {
  289. color: #552701;
  290. }
  291. #prefs {
  292. background: #FFBB22;
  293. border: 1px solid #552701;
  294. color: #552701;
  295. font-size: 11px;
  296. }
  297. /* browser */
  298. table.listing thead th,
  299. table.listing tbody td,
  300. table.listing tbody th {
  301. border: 1px solid #552701;
  302. }
  303. #dirlist td.age {
  304. border-top: 1px solid #552701;
  305. border-bottom: 1px solid #552701;
  306. }
  307. /* = WIKI = */
  308. div.code, pre.wiki, pre.literal-block {
  309. background: #fff;
  310. border: 1px dotted #552701;
  311. }
  312. .wiki-toc, #prefs, #tabs {
  313. background: #FFBB22 url(/browser/web/trunk/static/img/dashit-light.png?format=raw) no-repeat right bottom;
  314. padding-bottom: 67px;
  315. border: 1px solid #552701;
  316. color: #984601;
  317. font-size: 12px;
  318. font-family: verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
  319. -moz-border-radius: 5px;
  320. }
  321. #tabs li {
  322. color: #984601;
  323. }
  324. #tabs li li.active {
  325. border: 1px solid #E5DCDC;
  326. background: #E5DCDC;
  327. }
  328. .wiki-toc :link, .wiki-toc :visited {
  329. color: #552701;
  330. }
  331. a.missing:link, a.missing:visited,
  332. a.missing:link:hover, a.missing:visited:hover {
  333. background: #FFBB22;
  334. color: #552701;
  335. font-style: italic;
  336. }
  337. a.missing:link:after, a.missing:visited:after,
  338. a.missing:hover:after {
  339. content: ' missing!';
  340. font-size: 9px;
  341. color: #984601;
  342. vertical-align: top;
  343. padding-left: 5px;
  344. }
  345. .wiki-toc .active {
  346. font-weight: bold;
  347. }