OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style type="text/css" media="screen"> | 3 <style type="text/css" media="screen"> |
4 form { | 4 form { |
5 -webkit-column-count: 3; | 5 -webkit-column-count: 3; |
6 -webkit-column-gap: 0px; | 6 -webkit-column-gap: 0px; |
7 -moz-column-count: 3; | 7 -moz-column-count: 3; |
8 -moz-column-gap: 0px; | 8 -moz-column-gap: 0px; |
9 background: #ccccff; | 9 background: #ccccff; |
10 margin: 0px; | 10 margin: 0px; |
11 padding: 0px; | 11 padding: 0px; |
12 border: solid 1px red; | 12 border: solid 1px red; |
| 13 orphans: 1; |
| 14 widows: 1; |
13 } | 15 } |
14 | 16 |
15 input[type="number"] { | 17 input[type="number"] { |
16 width: 100px; | 18 width: 100px; |
17 height: 50px; | 19 height: 50px; |
18 font-size: 44px; | 20 font-size: 44px; |
19 } | 21 } |
20 | 22 |
21 td { | 23 td { |
22 background: red; | 24 background: red; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 <tr><td><input id="c31" type="number" min="0" max="100" step="10" /></td></tr> | 138 <tr><td><input id="c31" type="number" min="0" max="100" step="10" /></td></tr> |
137 <tr><td><input id="c32" type="number" min="0" max="100" step="10" /></td></tr> | 139 <tr><td><input id="c32" type="number" min="0" max="100" step="10" /></td></tr> |
138 </table> | 140 </table> |
139 </form> | 141 </form> |
140 | 142 |
141 <h2>Results</h2> | 143 <h2>Results</h2> |
142 <div id="mousepos"></div> | 144 <div id="mousepos"></div> |
143 <div id="res"></div> | 145 <div id="res"></div> |
144 | 146 |
145 </html> | 147 </html> |
OLD | NEW |