Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

292 righe
4.8 KiB

  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. }
  18. h1, h2, h3 {
  19. text-indent: 0.5em;
  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 {
  37. text-indent: 1em;
  38. text-align: inherit;
  39. }
  40. :link, :visited {
  41. color: #984601;
  42. border-bottom: none;
  43. }
  44. :link:hover, :visited:hover {
  45. color: #2C1F1C;
  46. }
  47. dt em {
  48. border-bottom:none;
  49. color: #984601;
  50. font-style:normal;
  51. text-decoration:none;
  52. }
  53. /* = HEADER = */
  54. .nav {
  55. text-align: right;
  56. font-size: 12px;
  57. }
  58. .nav li.last {
  59. border-right: none !important;
  60. }
  61. #main {
  62. background: #fff;
  63. color: #2C1F1C;
  64. padding: 0 1em;
  65. }
  66. #header img {
  67. margin: 0 0 -47px;
  68. width: 540px;
  69. }
  70. #siteheader, #banner, #mainnav, .nav {
  71. font-family:"Arial","Geneva",sans-serif;
  72. }
  73. /* == MENU PRINCIPAL == */
  74. #mainnav {
  75. margin: 0;
  76. background: #C46300;
  77. -moz-border-radius-topleft: 5px;
  78. -moz-border-radius-topright: 5px;
  79. border: none;
  80. font-weight: bold;
  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: #984601;
  117. }
  118. /* == Subnav == */
  119. #metanav ul {
  120. font-weight: normal;
  121. }
  122. #metanav :link:hover, #metanav :visited:hover {
  123. color: #984601;
  124. background: none;
  125. }
  126. #loginguest a:hover, #metanav :link, #metanav :visited {
  127. color: #fff;
  128. }
  129. #siteheader .nav :link, #siteheader .nav :visited {
  130. color: #C46300;
  131. }
  132. #siteheader .nav :visited:hover, #siteheader .nav :link:hover {
  133. color: #C46300;
  134. background: #552701;
  135. border-bottom: 1px dotted #C46300;
  136. }
  137. /* = FOOTER = */
  138. #footer {
  139. display: none;
  140. }
  141. /* = PAGES ET MODULES = */
  142. /* == Styles for images in documentation and articles == */
  143. img.inline, img.inlinetop {
  144. border: solid 2px;
  145. padding: 2px;
  146. }
  147. img.inlinetop {
  148. vertical-align: top;
  149. }
  150. img.math {
  151. vertical-align: middle;
  152. margin-left: 10px;
  153. margin-right: 10px;
  154. }
  155. img.matrix {
  156. vertical-align: top;
  157. margin-right: 30px;
  158. margin-top: 10px;
  159. }
  160. /* == FORMS == */
  161. input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
  162. background: #984601;
  163. }
  164. input[type="button"], input[type="submit"], input[type="reset"] {
  165. background: #C46300;
  166. border: 1px outset #984601;
  167. -moz-border-radius: 4px;
  168. }
  169. input[type="text"], input.textwidget, textarea {
  170. border: 1px solid #C46300;
  171. }
  172. legend {
  173. color: #984601;
  174. }
  175. fieldset {
  176. border-color: #984601;
  177. }
  178. #content.ticket {
  179. margin: 0 auto;
  180. }
  181. .buttons {
  182. text-align: center;
  183. }
  184. .buttons input {
  185. margin: 0.5em;
  186. }
  187. #content.ticket fieldset {
  188. background: #E5DCDC;
  189. }
  190. #field-description {
  191. background: #fff url(/browser/web/trunk/static/img/dashit-light.png?format=raw) no-repeat right bottom;
  192. }
  193. #attachments {
  194. background: #fff;
  195. border: none;
  196. }
  197. #attachfile {
  198. text-align: center;
  199. }
  200. #changelog {
  201. background: #cccc88;
  202. border: 1px solid #C46300;
  203. }
  204. a.ext-link .icon {
  205. background-position: right center;
  206. padding-right: 16px;
  207. }
  208. /* === FORM TICKETS === */
  209. #preview h3, #changelog h3 {
  210. border-bottom:1px solid #984601;
  211. color:#552701;
  212. font-size:100%;
  213. font-weight:bold;
  214. }
  215. #ticket {
  216. background: #E0E095;
  217. border: 1px solid #C46300;
  218. }
  219. #ticket .date p {
  220. margin: 6px;
  221. color: #984601;
  222. }
  223. form #comment {
  224. width: 692px;
  225. }
  226. #ticket table.properties tr {
  227. border-bottom: 1px dotted #C46300;
  228. }
  229. #content.ticket fieldset {
  230. border: 1px solid #C46300;
  231. }
  232. .wikitoolbar {
  233. width: 252px;
  234. }
  235. .wikitoolbar :link, .wikitoolbar :visited {
  236. border: 1px solid #C46300;
  237. margin-left: 2px
  238. }