├── formulario.css └── formulario.html /formulario.css: -------------------------------------------------------------------------------- 1 | /* Todos os elementos da página */ 2 | * { 3 | margin: 0; 4 | padding: 0; 5 | } 6 | 7 | /* Elementos com o ID "titulo" */ 8 | #titulo { 9 | font-family: sans-serif; 10 | color: #380B61; 11 | margin-left: 7%; 12 | } 13 | 14 | /* Elementos com o ID "subtitulo" */ 15 | #subtitulo { 16 | font-family: sans-serif; 17 | color: #380B61; 18 | margin-left: 10%; 19 | } 20 | 21 | #check{ 22 | display: inline-block; 23 | } 24 | 25 | /* Elementos de tag
*/ 26 | fieldset { 27 | border: 0; 28 | } 29 | 30 | /* Elemento de tag */ 31 | body{ 32 | background-color: #F0F8FF; 33 | font-family: sans-serif; 34 | font-size: 1em; 35 | color: #59429d; 36 | margin-left: 36%; 37 | margin-top: 2%; 38 | justify-content: center; 39 | } 40 | 41 | /* Elementos de tags , , 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | --------------------------------------------------------------------------------