60 lines
933 B
CSS
60 lines
933 B
CSS
|
/* Container div */
|
||
|
.container {
|
||
|
margin: auto;
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
/* Header */
|
||
|
header {
|
||
|
/* background-color: #333; */
|
||
|
color: white;
|
||
|
padding: 1rem;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* Form */
|
||
|
form {
|
||
|
margin: auto;
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
/* Fieldset */
|
||
|
fieldset {
|
||
|
background-color: #f0f0f0;
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
|
||
|
/* Labels */
|
||
|
label {
|
||
|
display: block;
|
||
|
margin-bottom: 0.5rem;
|
||
|
}
|
||
|
|
||
|
/* Inputs */
|
||
|
input[type="text"],
|
||
|
input[type="password"] {
|
||
|
background-color: #f8f8f8;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
color: #333;
|
||
|
padding: 0.25rem;
|
||
|
}
|
||
|
|
||
|
/* Buttons */
|
||
|
button {
|
||
|
background-color: #4CAF50;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
color: white;
|
||
|
padding: 0.25rem;
|
||
|
}
|
||
|
|
||
|
/* Footer */
|
||
|
footer {
|
||
|
background-color: #333;
|
||
|
color: white;
|
||
|
padding: 1rem;
|
||
|
text-align: center;
|
||
|
}
|