├── estilo.css ├── index.html └── script.js /estilo.css: -------------------------------------------------------------------------------- 1 | * { 2 | padding: 0; 3 | margin: 0; 4 | font-family: century gothic; 5 | } 6 | 7 | body { 8 | background-color: #ededed 9 | } 10 | 11 | #form-param { 12 | padding: 20px; 13 | background-color: #fff; 14 | display: flex; 15 | } 16 | 17 | #form-param .container { 18 | flex: 2; 19 | } 20 | #form-param .buttons { 21 | flex: 1; 22 | } 23 | 24 | input { 25 | padding: 9px; 26 | margin: 6px; 27 | width: 42% 28 | } 29 | 30 | button{ 31 | border: none; 32 | padding: 9px; 33 | display: block; 34 | margin: 6px 35 | } 36 | 37 | button:first-child { 38 | background-color: #48e; 39 | color: #fff 40 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |