Skip to content

Instantly share code, notes, and snippets.

@aleszu
Created May 12, 2016 20:59
Show Gist options
  • Save aleszu/bf803fbe5d6dc123de6a3e2b9715ee95 to your computer and use it in GitHub Desktop.
Save aleszu/bf803fbe5d6dc123de6a3e2b9715ee95 to your computer and use it in GitHub Desktop.
/** choropleth visualization */
#clean_merge{
polygon-fill: #FFFFB2;
polygon-opacity: 1;
line-color: #FFF;
line-width: 0;
line-opacity: 0;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 20.1] {
polygon-fill: #d81d09;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 20] {
polygon-fill: #f9842d;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 18] {
polygon-fill: #ffc166;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 16] {
polygon-fill: #f7eec1;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 12] {
polygon-fill: #dfedf7;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 8] {
polygon-fill: #a7c9ea;
}
#clean_merge [ estimated_age_adjusted_death_rate_11_categories_in_ranges <= 2] {
polygon-fill: #3E7BB6;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment