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

il y a 14 ans
il y a 14 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. }
  80. td, th
  81. {
  82. padding: 6px;
  83. }
  84. th
  85. {
  86. text-align: left;
  87. }
  88. tr
  89. {
  90. border-bottom: 1px solid #eee;
  91. }
  92. .right
  93. {
  94. text-align: right;
  95. }
  96. .noborder
  97. {
  98. border: 0;
  99. }
  100. .download a, .download a:visited
  101. {
  102. margin: 15px 0;
  103. padding: 7px;
  104. background-color: red;
  105. color: white;
  106. }
  107. .download a:hover
  108. {
  109. background-color: #ccc;
  110. color: red;
  111. }