main.css (909B)
1 <style> 2 3 /* Some ideas taken from: https://stackoverflow.com/questions/4309950/how-to-align-input-forms-in-html */ 4 5 div.form 6 { 7 display: block; 8 text-align: center; 9 } 10 11 form { 12 display: table; 13 margin-left: auto; 14 margin-right: auto; 15 16 17 } 18 19 p { 20 display: table-row; 21 } 22 23 label { 24 display: table-cell; 25 font: 1em serif; 26 } 27 28 option { 29 /* To make sure that all text fields have the same font settings 30 By default, textareas have a monospace font */ 31 font: 1em serif; 32 /* Match form field borders */ 33 border: 1px solid #9999; 34 35 } 36 37 .Box { 38 /* To make sure that all text fields have the same font settings 39 By default, textareas have a monospace font */ 40 font: 1em serif; 41 width: 100px; 42 43 border: 1px solid #00011111; 44 text-align: right; 45 } 46 47 select { 48 49 font: 1em serif; 50 border: 1px solid #0000; 51 52 } 53 54 55 .Buttons { 56 57 font: 1em serif; 58 border: 1px solid #0000; 59 margin: 0 auto; 60 display: block; 61 62 } 63 </style>