www.spaceplanner.app

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

commit 0c3bd38b5b8eb1435197b90a6634212dc74f16ca
parent 2a5144bc839132c38a6fc189612ae7c3a6d8cc77
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Mon, 14 Oct 2024 11:16:45 -0700

Add styles for the new railing and window pointmaps

Diffstat:
Mfiles/floorplans/floorplan/svg.css | 21+++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/files/floorplans/floorplan/svg.css b/files/floorplans/floorplan/svg.css @@ -12,11 +12,24 @@ stroke: black; } -#pointmaps > .selected { - stroke: blue; -} - #pointmaps > .door { stroke-width: 140; stroke-dasharray: 400 100; } + +#pointmaps > .window { + stroke: lightblue; + stroke-opacity: .75; + stroke-width: 200; +} + +#pointmaps > .railing { + stroke: black; + stroke-opacity: .5; + stroke-width: 200; +} + +#pointmaps > .selected { + stroke: blue; + stroke-opacity: 1; +}