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.1 KiB

il y a 14 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. }
  55. h2
  56. {
  57. margin-top: 20px;
  58. line-height: 1.5em;
  59. font-weight: bold;
  60. color: #86a11d;
  61. }
  62. form
  63. {
  64. font-size: 150%;
  65. }
  66. .highlight
  67. {
  68. background-color: #fff7c0;
  69. padding: 5px;
  70. }
  71. strong
  72. {
  73. color: #000;
  74. }
  75. table
  76. {
  77. border-collapse: collapse;
  78. }
  79. td, th
  80. {
  81. padding: 6px;
  82. }
  83. th
  84. {
  85. text-align: left;
  86. }
  87. tr
  88. {
  89. border-bottom: 1px solid #eee;
  90. }
  91. .right
  92. {
  93. text-align: right;
  94. }
  95. .noborder
  96. {
  97. border: 0;
  98. }