www.spaceplanner.app

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

commit fe107df833b80372e2ee981f3f2d26b120cf8265
parent ac4bec6185675121dc2a63f76bd709cb687c0934
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Wed,  7 Aug 2024 19:07:00 -0700

Update floorplan style

(Some was accidentally committed with the last change.)

- Limit input widths
- Limit list view item widths
- Standardize styles between editable metadata and uneditable metadata

Diffstat:
Mfiles/floorplans/main.css | 23+++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)

diff --git a/files/floorplans/main.css b/files/floorplans/main.css @@ -45,19 +45,30 @@ opacity: 100%; } -.floorplan > header { +#floorplans.grid > li > .floorplan > header { min-height: 25%; } -input.fp_name { - font-size: larger; +#floorplans:not(.grid) > li > .floorplan { + margin: 2rem; +} + +#floorplans:not(.grid) > li { + max-width: 32rem; +} + +.fp_name { + font-size: large; + margin-bottom: .75em; } -input.fp_address { +.fp_address { font-style: italic; } -input { +/* Maybe I should give these elements two classes: fp_metadata and + * one of the following: */ +input.fp_name, input.fp_synopsis, input.fp_address { display: block; - max-width: 80%; + max-width: 60%; }