main
 1// Place all the styles related to the Neighbourhoods controller here.
 2// They will automatically be included in application.css.
 3// You can use Sass (SCSS) here: http://sass-lang.com/
 4
 5$green: #00cc33;
 6$orange: #cc9900;
 7$red: #cc0000;;
 8$white: #fff;
 9
10body { text-rendering:optimizeLegibility; }
11
12.neighbourhoods {
13  td.evac, td.open, td.part { color:$white; }
14  td.evac { background:$red; text-transform:uppercase; }
15  td.open { background:$green; }
16  td.part { background:$orange; }
17}