www.spaceplanner.app

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

main.css (459B)


      1 body {
      2 	background-color: grey;
      3 }
      4 
      5 #services {
      6 	background-color: white;
      7 	max-width: 50vw;
      8 	min-width: min(40em, 70vw);
      9 	min-height: 60%;
     10 	border: thin ridge grey;
     11 	border-radius: .25em;
     12 	padding: 2em;
     13 }
     14 
     15 #services > legend {
     16 	text-align: center;
     17 }
     18 
     19 .service {
     20 	background-color: #FBFBFB;
     21 	border: thin ridge grey;
     22 	border-radius: .25em;
     23 	padding: 2em;
     24 	margin: 1em 0;
     25 }
     26 
     27 .service > .name {
     28 	font-size: xx-large;
     29 }
     30 
     31 .service > .price {
     32 	font-size: x-large;
     33 }