Skip to content

Instantly share code, notes, and snippets.

@stiles
Created July 16, 2012 19:11
Show Gist options
  • Save stiles/3124443 to your computer and use it in GitHub Desktop.
Save stiles/3124443 to your computer and use it in GitHub Desktop.
per capita spending
@water: #b8dee6;
@land: #eee;
@border: #85c5d3;
@stateborder: #666;
@countyborder: #fff;
@scale1: #e6e6e6;
@scale2: #c5e0e1;
@scale3: #8BC0BF;
@scale4: #51A09E;
@scale5: #18817E;
@scale6: #14615F;
@scale7: #0D4140;
Map {
background-color: #b8dee6;
}
#countries {
::outline {
line-color: #85c5d3;
line-width: 2;
line-join: round;
}
polygon-fill: #fff;
}
#states {
line-color:#fff;
line-width:1;
polygon-opacity:1;
polygon-fill:#ae8;
[spending > 0 ] { polygon-fill: @scale3; }
[spending > 8000 ] { polygon-fill: @scale4; }
[spending > 10000 ] { polygon-fill: @scale5; }
[spending > 12000 ] { polygon-fill: @scale6; }
[spending > 15000 ] { polygon-fill: @scale7; }
}
#lakes [ScaleRank < 3] {
line-color: @border;
polygon-fill: @water;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment