We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* Definindo estilo para o corpo da página */ body { font-family: Arial, sans-serif; background-color: #f4f4f9; margin: 0; padding: 20px; }
/* Estilizando o título principal */ h2 { color: #333; text-align: center; }
/* Estilo para o formulário */ form { max-width: 400px; margin: 0 auto; padding: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
/* Estilo para os rótulos (labels) */ label { font-weight: bold; color: #333; }
/* Estilo para os campos de entrada */ input[type="text"], input[type="number"], input[type="email"] { width: 100%; padding: 10px; margin: 10px 0 20px 0; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; }
/* Estilo para o botão */ input[type="submit"] { width: 100%; background-color: #4CAF50; color: white; padding: 10px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; }
input[type="submit"]:hover { background-color: #45a049; } Explicação:
The text was updated successfully, but these errors were encountered:
english please!
Apenas uma colaboração da aula da DIO.css esse código não fui eu que fiz /* Definindo estilo para o corpo da página */ body { font-family: Arial, sans-serif; background-color: #f4f4f9; margin: 0; padding: 20px; } /* Estilizando o título principal */ h2 { color: #333; text-align: center; } /* Estilo para o formulário */ form { max-width: 400px; margin: 0 auto; padding: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } /* Estilo para os rótulos (labels) */ label { font-weight: bold; color: #333; } /* Estilo para os campos de entrada */ input[type="text"], input[type="number"], input[type="email"] { width: 100%; padding: 10px; margin: 10px 0 20px 0; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; } /* Estilo para o botão */ input[type="submit"] { width: 100%; background-color: #4CAF50; color: white; padding: 10px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; } input[type="submit"]:hover { background-color: #45a049; } Explicação:
Sorry, something went wrong.
Ok
No branches or pull requests
Apenas uma colaboração da aula da DIO.css
esse código não fui eu que fiz
/* Definindo estilo para o corpo da página */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 20px;
}
/* Estilizando o título principal */
h2 {
color: #333;
text-align: center;
}
/* Estilo para o formulário */
form {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Estilo para os rótulos (labels) */
label {
font-weight: bold;
color: #333;
}
/* Estilo para os campos de entrada */
input[type="text"],
input[type="number"],
input[type="email"] {
width: 100%;
padding: 10px;
margin: 10px 0 20px 0;
border: 1px solid #ddd;
border-radius: 5px;
box-sizing: border-box;
}
/* Estilo para o botão */
input[type="submit"] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #45a049;
}
Explicação:
The text was updated successfully, but these errors were encountered: