36 lines
480 B
CSS
36 lines
480 B
CSS
* {
|
|
background-color: #27263D;
|
|
color: white;
|
|
font-family: "Trebuchet MS", serif;
|
|
}
|
|
|
|
.inputs {
|
|
margin: 50px auto auto;
|
|
width: 50%;
|
|
border: 2px solid black;
|
|
border-radius: 50px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.submit {
|
|
margin: auto 30%;
|
|
width: 40%;
|
|
padding: 10px;
|
|
}
|
|
|
|
div {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
width: 40%;
|
|
text-align: right;
|
|
}
|
|
|
|
input {
|
|
margin: 10px auto auto;
|
|
width: 25%;
|
|
padding: 10px;
|
|
}
|