50 lines
718 B
CSS
50 lines
718 B
CSS
|
input {
|
||
|
color: #ffffff;
|
||
|
margin: 0.2rem;
|
||
|
}
|
||
|
input, label, button {
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
|
||
|
input[type="submit"]:focus {
|
||
|
outline-color: #344a70;
|
||
|
}
|
||
|
|
||
|
input[type="submit"] {
|
||
|
background-color: #344a70;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
input[type=radio] {
|
||
|
width: 1em;
|
||
|
height: 0.75em;
|
||
|
}
|
||
|
|
||
|
.line {
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
input[type="password"], [type="text"] {
|
||
|
background-color: #ffffff;
|
||
|
color: #222222;
|
||
|
width: 75%;
|
||
|
}
|
||
|
|
||
|
input[type="text"]::placeholder {
|
||
|
text-align: center;
|
||
|
color: #dddddd;
|
||
|
}
|
||
|
|
||
|
textarea, input {
|
||
|
border-radius: 0.5rem;
|
||
|
border-style: hidden;
|
||
|
padding: 0.5rem;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|