An open source, stand-alone, customisable public spending data web app.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 1.4 KiB

14 years ago
14 years ago
14 years ago
14 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. margin: 30px 0;
  13. }
  14. input
  15. {
  16. font-size: 130%;
  17. background-color: #fff;
  18. }
  19. #main
  20. {
  21. margin: 30px 0;
  22. }
  23. #footer
  24. {
  25. font-size: 100%;
  26. background-color: #fff;
  27. text-align: left;
  28. margin: 40px 0 40px 0;
  29. }
  30. a
  31. {
  32. background-color: #dce9b0;
  33. padding: 1px 4px;
  34. color: #111;
  35. text-decoration: none;
  36. }
  37. a:visited
  38. {
  39. background-color: #eee;
  40. padding: 1px 4px;
  41. color: #111;
  42. text-decoration: none;
  43. }
  44. a:hover
  45. {
  46. background-color: #4f4f4f;
  47. color: #fff;
  48. }
  49. h1
  50. {
  51. margin-top: 20px;
  52. line-height: 1.4em;
  53. font-weight: bold;
  54. color: #86a11d;
  55. font-size: 180%;
  56. }
  57. h2
  58. {
  59. margin-top: 20px;
  60. line-height: 1.5em;
  61. font-weight: bold;
  62. color: #86a11d;
  63. }
  64. form
  65. {
  66. font-size: 150%;
  67. }
  68. .highlight
  69. {
  70. background-color: #fff7c0;
  71. padding: 5px;
  72. }
  73. strong
  74. {
  75. color: #000;
  76. }
  77. table
  78. {
  79. border-collapse: collapse;
  80. margin-bottom: 30px 0;
  81. }
  82. td, th
  83. {
  84. padding: 6px;
  85. }
  86. th
  87. {
  88. text-align: left;
  89. }
  90. tr
  91. {
  92. border-bottom: 1px solid #eee;
  93. }
  94. .right
  95. {
  96. text-align: right;
  97. }
  98. .noborder
  99. {
  100. border: 0;
  101. }
  102. .download a, .download a:visited
  103. {
  104. margin: 15px 0;
  105. padding: 7px;
  106. background-color: red;
  107. color: white;
  108. }
  109. .download a:hover
  110. {
  111. background-color: #eee;
  112. color: red;
  113. }
  114. .callout
  115. {
  116. background-color: beige;
  117. padding: 0px;
  118. font-size: 150%;
  119. line-height: 1.5em;
  120. }