An open source, stand-alone, customisable public spending data web app.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

style.css 1.6 KiB

il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. body
  2. {
  3. background-color: #fff;
  4. color: #555;
  5. font-family: Helvetica, Arial, sans-serif;
  6. font-size: 100%;
  7. line-height: 1.5em;
  8. }
  9. p
  10. {
  11. font-size: 110%;
  12. }
  13. input
  14. {
  15. font-size: 130%;
  16. background-color: #fff;
  17. }
  18. #main
  19. {
  20. margin: 30px 0;
  21. }
  22. #footer
  23. {
  24. font-size: 100%;
  25. background-color: #fff;
  26. text-align: left;
  27. margin: 40px 0 40px 0;
  28. }
  29. a
  30. {
  31. background-color: #dce9b0;
  32. padding: 1px 4px;
  33. color: #111;
  34. text-decoration: none;
  35. }
  36. a:visited
  37. {
  38. background-color: #eee;
  39. padding: 1px 4px;
  40. color: #111;
  41. text-decoration: none;
  42. }
  43. a:hover
  44. {
  45. background-color: #4f4f4f;
  46. color: #fff;
  47. }
  48. h1
  49. {
  50. margin-top: 20px;
  51. line-height: 1.4em;
  52. font-weight: bold;
  53. color: #86a11d;
  54. font-size: 180%;
  55. }
  56. h2
  57. {
  58. margin-top: 20px;
  59. line-height: 1.5em;
  60. font-weight: bold;
  61. color: #86a11d;
  62. }
  63. form
  64. {
  65. font-size: 150%;
  66. }
  67. .highlight
  68. {
  69. background-color: #fff7c0;
  70. padding: 5px;
  71. }
  72. strong
  73. {
  74. color: #000;
  75. }
  76. table
  77. {
  78. border-collapse: collapse;
  79. margin-bottom: 50px;
  80. }
  81. td, th
  82. {
  83. padding: 6px;
  84. }
  85. th
  86. {
  87. text-align: left;
  88. }
  89. tr
  90. {
  91. border-bottom: 1px solid #eee;
  92. }
  93. .right
  94. {
  95. text-align: right;
  96. }
  97. .noborder
  98. {
  99. border: 0;
  100. }
  101. .download a, .download a:visited
  102. {
  103. margin: 15px 0;
  104. padding: 7px;
  105. background-color: red;
  106. color: white;
  107. }
  108. .download a:hover
  109. {
  110. background-color: #eee;
  111. color: red;
  112. }
  113. .callout
  114. {
  115. background-color: beige;
  116. padding: 0px;
  117. font-size: 150%;
  118. line-height: 1.5em;
  119. }
  120. .spinner
  121. {
  122. display: none;
  123. }
  124. .filter li
  125. {
  126. display: inline;
  127. }
  128. .filter a, .filter a:visited
  129. {
  130. margin: 0 0px 0 0;
  131. padding: 5px 10px;
  132. background-color: #333;
  133. color: #fff;
  134. }
  135. .filter a:hover
  136. {
  137. }
  138. a.filter_selected
  139. {
  140. background-color: red;
  141. color: #fff;
  142. }