www.spaceplanner.app

Web client to the spaceplanner API
git clone git://jacobedwards.org/www.spaceplanner.app
Log | Files | Refs

svg.css (577B)


      1 /* SVG element CSS */
      2 
      3 #points > * {
      4 	fill: lightgrey;
      5 }
      6 
      7 #points > .selected {
      8 	fill: blue;
      9 }
     10 
     11 #pointmaps > * {
     12 	stroke: black;
     13 }
     14 
     15 #pointmaps > .door {
     16 	stroke-width: 140;
     17 	stroke-dasharray: 400 100;
     18 }
     19 
     20 #pointmaps > .window {
     21 	stroke: lightblue;
     22 	stroke-opacity: .75;
     23 	stroke-width: 200;
     24 }
     25 
     26 #pointmaps > .railing {
     27 	stroke: black;
     28 	stroke-opacity: .5;
     29 	stroke-width: 200;
     30 }
     31 
     32 #pointmaps > .selected {
     33 	stroke: blue;
     34 	stroke-opacity: 1;
     35 }
     36 
     37 #furniture_layouts > * > .selected {
     38 	filter: invert(8%) sepia(100%) saturate(7462%) hue-rotate(248deg) brightness(94%) contrast(144%);
     39 }