local.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. /* Titre général */
  2. header {
  3. user-select: none;
  4. /* Navigateurs */
  5. -moz-user-select: none;
  6. -webkit-user-select: none;
  7. }
  8. h1 {
  9. font-size: 2.2em;
  10. margin-bottom: 1em;
  11. }
  12. h1:before {
  13. content: "\\_o<";
  14. color: #FF6600;
  15. font-weight: normal;
  16. font-family: monospace;
  17. text-align: center;
  18. font-size: 1.25em;
  19. display: block;
  20. float: left;
  21. width: 25%;
  22. }
  23. h1:hover:before {
  24. content: "\\_x<";
  25. }
  26. h1:hover:after {
  27. position: absolute;
  28. text-align: center;
  29. z-index: -1;
  30. right: 15%;
  31. left: 25%;
  32. }
  33. h1 a, h1:after {
  34. color: #0086A9;
  35. font-weight: bold;
  36. }
  37. /* Barre de navigation */
  38. .side-nav {
  39. background-color: #FAFAFA;
  40. padding:5px;
  41. }
  42. /*
  43. nav#sidebox {
  44. position: fixed;
  45. z-index: 1;
  46. }
  47. h3#nav {
  48. background-color: #E8E8FF;
  49. border: 1px solid #E0E0E0;
  50. border-bottom-color: #0086A9;
  51. padding-bottom: 0.25em;
  52. text-indent: 0.25em;
  53. margin-top: 0.25em;
  54. padding-top: 0.1em;
  55. margin-bottom: 0;
  56. color: #FF6600;
  57. }*/
  58. /*
  59. .side-nav {
  60. padding: 0;
  61. padding-top: 0.75em;
  62. background-color: #E8E8FF;
  63. border: 1px solid #E0E0E0;
  64. border-top: 0 none transparent;
  65. margin-top: 0;
  66. }
  67. .side-nav a {
  68. padding: 0 0.5em 0.2em 0.5em;
  69. }
  70. .side-nav a:hover,
  71. .side-nav li.active a,
  72. .side-nav li ul li a:hover {
  73. background-color: #0086A9;
  74. color: #FFFFFF !important;
  75. border-radius: 5px;
  76. }
  77. .side-nav li ul {
  78. list-style-type: disc;
  79. padding-top: 0.25em;
  80. }
  81. .side-nav li ul li a:hover {
  82. margin-right: 1em;
  83. }
  84. .side-nav li ul li a {
  85. padding-left: 0.25em;
  86. margin-left: -0.25em;
  87. }
  88. .side-nav li.active li a {
  89. background-color: transparent;
  90. color: #0086A9 !important;
  91. }
  92. */
  93. /* Titre section principale */
  94. h2:before {
  95. /*content: url(../img/coinitem.png);*/
  96. margin-right: 0.25em;
  97. }
  98. h2 {
  99. color: #FF6600;
  100. /*border-bottom: 2px solid #0086A9;*/
  101. }
  102. /* panels */
  103. .panel {}
  104. .panel > h2,
  105. .panel > h3,
  106. .panel > h4,
  107. .panel > h5 {
  108. border-bottom: 1px solid #d8d8d8;
  109. margin-bottom: 1.25rem;
  110. padding-bottom: 0.625rem;
  111. }
  112. .panel.callout > h2,
  113. .panel.callout > h3,
  114. .panel.callout > h4,
  115. .panel.callout > h5 {
  116. border-color: #B5F0FF;
  117. }
  118. /* Tables */
  119. table.full-width {
  120. width:100%;
  121. }
  122. table.no-border {
  123. border: none;
  124. }
  125. table.no-background {}
  126. table.no-background,
  127. table.no-background thead,
  128. table.no-background tfoot,
  129. table.no-background tr {
  130. background: transparent;
  131. }
  132. /* Specific table: Member personnal info */
  133. #personnal-info {
  134. border-collapse: collapse;
  135. }
  136. #personnal-info td {
  137. vertical-align: top;
  138. }
  139. #personnal-info tr:last-child td {
  140. border-bottom: none;
  141. }
  142. #personnal-info tr td:first-child {
  143. text-align: right;
  144. color: #666;
  145. font-weight: bold;
  146. }
  147. #personnal-info .email td {
  148. /* email address can be reallllly long word */
  149. overflow-wrap: break-word;
  150. word-wrap: break-word;
  151. word-break: break-all;
  152. }
  153. /* login page */
  154. #login-form {}
  155. #login-form table td {
  156. vertical-align: middle;
  157. }
  158. #login-form table input {
  159. margin-bottom: 0;
  160. }
  161. #login-form label {
  162. font-size: 1.2em;
  163. }
  164. #password-reset-link {
  165. margin-left: 1em;
  166. }
  167. /* New comers panel on login page */
  168. #newcomers {
  169. margin-top: 3.9375rem; /* h1 margin top + bottom + font-size * line-height = 0.2rem + 0.5rem + 2.3125rem * 1.4 */
  170. }
  171. table tr.placeholder td {
  172. text-align: center;
  173. font-style: italic;
  174. }
  175. table .actions {
  176. text-align: center;
  177. }
  178. table .actions .button {
  179. width: 100%;
  180. }
  181. .pre-table-action {
  182. float: right;
  183. }
  184. /* Footer */
  185. #footer {
  186. opacity: 0.18;
  187. margin-top: 20px;
  188. }
  189. #footer .line {
  190. widht:100%;
  191. border-bottom: 1px solid black;
  192. }
  193. #footer .duck {
  194. background-image: url('../img/coin.svg');
  195. background-size: auto 50%;
  196. background-repeat: no-repeat;
  197. background-position: center top;
  198. height:50px;
  199. }
  200. /* Invoices */
  201. #invoice_details .period {
  202. color:#999;
  203. }
  204. table.invoice-table tr.total>td {
  205. font-weight:bold;
  206. border-top:2px solid #DDD;
  207. }
  208. table.invoice-table td.total {
  209. width:100px;
  210. }
  211. #member-invoices td.unpaid {
  212. color:red;
  213. }
  214. #member-invoices tr.total>td.right {
  215. text-align:right;
  216. }
  217. #payment-howto {}
  218. /* Modifs pour les infos */
  219. td.center {
  220. text-align: center;
  221. }
  222. span.italic {
  223. font-style: italic;
  224. }
  225. /*.button {
  226. border-radius: 2px;
  227. padding: 0.2em 0.5em 0.4em 0.5em;
  228. margin-bottom: auto;
  229. font-size: 0.9em;
  230. }*/
  231. .boolviewer input {
  232. display: none;
  233. }
  234. .boolviewer input:checked+span:before {
  235. color: #008800;
  236. content: "✔ ";
  237. }
  238. .boolviewer input:not(:checked)+span:before {
  239. color: #FF0000;
  240. content: "✗ ";
  241. }
  242. .pass {
  243. font-weight: bold;
  244. }
  245. .warning {
  246. background-color: #FF7777;
  247. border-radius: 5px;
  248. font-style: italic;
  249. }
  250. .warning:before {
  251. content: "⚠ ";
  252. font-weight: bold;
  253. }
  254. #graph h3 select {
  255. display: inline;
  256. background-color: transparent;
  257. border: 0 none transparent;
  258. font-family: inherit;
  259. box-shadow: none;
  260. font-size: 0.9em;
  261. width: auto;
  262. margin: 0;
  263. padding: 0;
  264. }
  265. #graph h3 select option {
  266. font-size: 0.6em;
  267. }
  268. a.cfglink {
  269. white-space: nowrap;
  270. }
  271. tr.inactive {
  272. opacity: 0.3;
  273. }
  274. /* Champs éditables */
  275. .flatform:before {
  276. content: "Les champs marqués d'un ✎ sont éditables.";
  277. }
  278. .flatform .legend {
  279. clear: both;
  280. }
  281. .flatfield label {
  282. background-color: #0086A9;
  283. color: #F0F0F0;
  284. font-size: 0.9em;
  285. padding: 0.2em 0.5em;
  286. white-space: nowrap;
  287. }
  288. .flatfield label:before {
  289. content: "✎ ";
  290. color: #E9E9E9;
  291. }
  292. .flatfield input {
  293. margin-bottom: 0;
  294. border: 1px solid #E9E9E9;
  295. background-color: transparent;
  296. text-overflow: ellipsis;
  297. padding-left: 1em;
  298. box-shadow: none;
  299. font-size: 1.1em;
  300. color: #222222;
  301. width: 90%;
  302. }
  303. .flatfield input::-moz-placeholder {
  304. font-style: italic;
  305. }
  306. .flatfield input:-ms-input-placeholder {
  307. font-style: italic;
  308. }
  309. .flatfield input::-webkit-input-placeholder {
  310. font-style: italic;
  311. }
  312. .flatfield input:focus {
  313. background-color: #FFFFFF;
  314. border: 2px solid #C0C0C0;
  315. }
  316. form .helptext {
  317. position: relative;
  318. top: -1em;
  319. margin: 0em 1em 0em 1em;
  320. font-style: italic;
  321. font-size: small;
  322. }
  323. /* Feeds */
  324. .feed {
  325. font-size:80%;
  326. }
  327. .feed .entry {
  328. margin-bottom:1em;
  329. }
  330. .feed .entry .date {
  331. color:gray;
  332. font-size:80%;
  333. }
  334. .legend .button, .formcontrol .button {
  335. padding: 0.25em 0.5em;
  336. border-radius:5px;
  337. font-size: 0.9em;
  338. }
  339. .nogap ul {
  340. margin-bottom: 0;
  341. }
  342. .nogap ul li {
  343. list-style-type: none;
  344. }
  345. .errored input {
  346. border-color: #FF0000;
  347. box-shadow: #FF7777 0 0 5px;
  348. }
  349. .formcontrol {
  350. text-align: right;
  351. margin-right: 1em;
  352. }
  353. .message {
  354. padding: 0.5em;
  355. text-align: center;
  356. margin: 1em 0;
  357. }
  358. .message.success {
  359. color: #FFFFFF;
  360. background-color: #20BA44;
  361. }
  362. .message.warning {
  363. color: #620
  364. background-color: #FFAE00;
  365. font-style: normal;
  366. border-radius: 0;
  367. }
  368. .eat-up {
  369. margin-top: -1.5em;
  370. }
  371. .message.success:before {
  372. content: "✔ ";
  373. }
  374. .nowrap {
  375. overflow: hidden;
  376. text-overflow: ellipsis;
  377. white-space: nowrap;
  378. }
  379. /* List filters links */
  380. .list-filter {
  381. text-align: right;
  382. }