mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 09:00:01 +01:00
41 lines
No EOL
544 B
CSS
41 lines
No EOL
544 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: aquamarine;
|
|
}
|
|
|
|
.form-container {
|
|
border-radius: 25px;
|
|
padding: 20px;
|
|
width: 50%;
|
|
background-color: aliceblue;
|
|
display: center;
|
|
}
|
|
|
|
label {
|
|
margin: 10px;
|
|
color: brown;
|
|
}
|
|
|
|
input {
|
|
width: 90px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
height: 10px;
|
|
}
|
|
textarea {
|
|
width: 90px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
button {
|
|
background-color: rgb(82, 90, 90);
|
|
font-size: 12px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: green;
|
|
} |