Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 24th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Map {
  2.   background-color: #333;
  3. }
  4.  
  5. #countries {
  6.   ::outline {
  7.     line-color: #666;
  8.     line-width: 2;
  9.     line-join: round;
  10.   }
  11.   polygon-fill: #666;
  12. }
  13.  
  14. #states [ISO='USA'] {
  15.   line-color:#333;
  16.   line-width:1;
  17.   polygon-opacity:1;
  18.   polygon-fill:#666;
  19. }
  20.  
  21. #lakes [ScaleRank < 3] {
  22.   line-color:#333;
  23.   line-width:0.5;
  24.   polygon-opacity:1;
  25.   polygon-fill:#333;
  26. }
  27.  
  28. #cities [Population > 250000]{
  29.   marker-width:3;
  30.   marker-fill:#e76451;
  31.   marker-line-color:#aa2a17;
  32.   marker-allow-overlap:true;
  33.   marker-opacity: .6;
  34.  
  35.   [MurderRate > 0 ] { marker-width:2; }
  36.   [MurderRate > 2 ] { marker-width:6; }
  37.   [MurderRate > 4 ] { marker-width:10; }
  38.   [MurderRate > 8 ] { marker-width:14; }
  39.   [MurderRate > 16 ] { marker-width:18; }
  40. }