ibikecph / cphbikes

I Bike CPH Carto (old)
2 stars 3 forks source link

add bridge for paths #76

Closed sensescape closed 11 years ago

sensescape commented 11 years ago

tried this, not working: [zoom>=17] { line-width: 1.7; line-color: #c5c7c7;

[bicycle='no']
{ 
  line-width: 1.5; 
  line-dasharray: 4, 3; 

  [bridge='yes']
  {
    line-color: #ff0000;
  }
}

} screen shot 2013-05-30 at 2 05 29 pm

would like to add an outline for bridges

mojodna commented 11 years ago

I added this (the ::inline piece should have been unnecessary, but hey...):

    [bridge='yes']
    {
      ::outline
      {
    line-color: #c5c7c7;
    line-width: 2.5;
      }

      ::inline
      {
    line-width: 1.5;
    line-color: #fff;
      }
    }

screen shot 2013-05-30 at 2 59 47 pm

mojodna commented 11 years ago

With your updated colors:

screen shot 2013-05-30 at 3 03 10 pm

sensescape commented 11 years ago

screen shot 2013-05-30 at 3 24 23 pm

done