Election results in the London Borough of Sutton.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

style.css 2.9 KiB

hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. body
  2. {
  3. background-color: #fff;
  4. color: #555;
  5. font-family: Helvetica, Arial, sans-serif;
  6. font-size: 100%;
  7. width: 100%;
  8. line-height: 1.5em;
  9. margin: 0;
  10. padding: 0;
  11. }
  12. .warning {
  13. padding: 10px 15px;
  14. background-color: beige;
  15. margin: 25px 0;
  16. }
  17. p
  18. {
  19. font-size: 110%;
  20. }
  21. input
  22. {
  23. font-size: 130%;
  24. background-color: #fff;
  25. }
  26. input.postcode
  27. {
  28. text-transform: uppercase;
  29. }
  30. #main
  31. {
  32. width: 920px;
  33. margin: 50px auto;
  34. }
  35. tr.footer {
  36. border-top: 2px solid #777;
  37. border-bottom: 0px solid black;
  38. }
  39. tr.header {
  40. border-bottom: 2px solid #777;
  41. }
  42. #footer
  43. {
  44. font-size: 100%;
  45. background-color: #555;
  46. color: #fff;
  47. text-align: left;
  48. margin: 40px 0 0 0;
  49. height: 100%;
  50. }
  51. #footer_inner {
  52. margin: 0 auto;
  53. padding: 30px 0;
  54. width: 930px;
  55. }
  56. #footer h1 {
  57. font-size: 180%;
  58. color: #fff;
  59. }
  60. a
  61. {
  62. background-color: #dce9b0;
  63. padding: 1px 4px;
  64. color: #111;
  65. text-decoration: none;
  66. }
  67. a:visited
  68. {
  69. background-color: #eee;
  70. padding: 1px 4px;
  71. color: #111;
  72. text-decoration: none;
  73. }
  74. a:hover
  75. {
  76. background-color: #4f4f4f;
  77. color: #fff;
  78. }
  79. h1
  80. {
  81. margin-top: 20px;
  82. line-height: 1.4em;
  83. font-weight: bold;
  84. color: #86a11d;
  85. }
  86. h2
  87. {
  88. margin-top: 40px;
  89. line-height: 1.5em;
  90. font-weight: bold;
  91. color: #86a11d;
  92. }
  93. h3
  94. {
  95. margin: 30px 0 10px 0;
  96. line-height: 1.5em;
  97. font-weight: bold;
  98. color: #86a11d;
  99. }
  100. form
  101. {
  102. font-size: 150%;
  103. }
  104. .candidate_name
  105. {
  106. font-size: 150%;
  107. font-weight: bold;
  108. }
  109. .candidate_party
  110. {
  111. color: #999;
  112. }
  113. .highlight
  114. {
  115. background-color: #fff7c0;
  116. }
  117. strong
  118. {
  119. color: #000;
  120. }
  121. table
  122. {
  123. border-collapse: collapse;
  124. }
  125. td, th
  126. {
  127. padding: 6px;
  128. }
  129. th {
  130. font-weight: normal;
  131. }
  132. tr
  133. {
  134. border-bottom: 1px solid #eee;
  135. }
  136. .right
  137. {
  138. text-align: right;
  139. }
  140. .elected
  141. {
  142. background-color: #777;
  143. color: white;
  144. padding: 2px 5px;
  145. font-weight: normal;
  146. text-transform: uppercase;
  147. }
  148. .noborder
  149. {
  150. border: 0;
  151. }
  152. #lookup {
  153. background-color: beige;
  154. padding: 10px 25px;
  155. }
  156. #error {
  157. background-color: red;
  158. color: white;
  159. padding: 10px 20px;
  160. }
  161. /* Wardmap */
  162. .wardmap tr, .wardmap td.blank
  163. {
  164. border: 0;
  165. }
  166. .wardmap td
  167. {
  168. border: 1px solid #fff;
  169. width: 16%;
  170. height: 80px;
  171. padding: 10px;
  172. text-align: center;
  173. font-size: 90%;
  174. }
  175. .ld3 a, .ld3 a:visited, .ld2 a, .ld2 a:visited
  176. {
  177. background-color: orange;
  178. color: white;
  179. padding: 3px;
  180. line-height: 1.5em;
  181. width: 70%;
  182. }
  183. .ld1 a, .ld1 a:visited, .con3 a, .con3 a:visited
  184. {
  185. background-color: blue;
  186. color: white;
  187. padding: 3px;
  188. line-height: 1.5em;
  189. width: 70%;
  190. }
  191. .wardmap a:hover
  192. {
  193. background-color: black;
  194. color: white;
  195. padding: 3px;
  196. line-height: 1.5em;
  197. width: 70%;
  198. }
  199. .ld3
  200. {
  201. background-color: orange;
  202. color: white;
  203. }
  204. .ld2
  205. {
  206. background-color: orange;
  207. background-image: url('ld2.png');
  208. color: white;
  209. }
  210. .ld1
  211. {
  212. background-color: blue;
  213. background-image: url('ld1.png');
  214. color: white;
  215. }
  216. .con3
  217. {
  218. background-color: blue;
  219. color: white;
  220. }
  221. .letter_index a {
  222. margin: 0 10px 0 0;
  223. }