diff --git a/public/style.css b/public/style.css index a177325..8826553 100644 --- a/public/style.css +++ b/public/style.css @@ -172,6 +172,7 @@ tr color: white; padding: 2px 5px; font-weight: normal; + text-transform: uppercase; } .noborder diff --git a/views/resultsdistrict.haml b/views/resultsdistrict.haml index 68c418c..0bfdb35 100644 --- a/views/resultsdistrict.haml +++ b/views/resultsdistrict.haml @@ -37,9 +37,9 @@ %table %tr.header - %th - %th - %th + %th   + %th   + %th   %th.right.highlight seats won %th candidates %th.right votes @@ -59,25 +59,26 @@ %td.right= format_percent(row['total_votes'].to_f / @total_votes * 100) %tr.footer - %td - %td - %td + %td   + %td   + %td   %td.right.highlight= @total_seats %td.right= @total_candidates %td.right= commify(@total_votes) - %td + %td   %h2 Votes by candidate %table %tr.header - %th - %th - %th + %th   + %th   + %th   + %th   %th.right votes %th.right % votes - %th + %th   - count = 0 - for candidacy in @candidacies @@ -89,7 +90,7 @@ %span.candidate_name.fn %a{ :href => "/candidates/#{candidacy.candidate.id}" } = candidacy.candidate.short_name - %br + %td %span.candidate_party.org = candidacy.party.name @@ -97,15 +98,16 @@ %td.right= format_percent(candidacy.votes.to_f / @total_votes * 100) - %td - - if candidacy.seats == 1 - .elected ELECTED + - if candidacy.seats == 1 + %td.elected="Elected" + - else + %td   %tr.footer - %td - %td - %td + %td   + %td   + %td   + %td   %td.right= commify(@total_votes) - %td - %td - %td + %td   + %td