19 lines
239 B
CSS
19 lines
239 B
CSS
|
|
main{
|
|
color: white;
|
|
margin: 10px;
|
|
}
|
|
|
|
input[type="text"], input[type="password"]{
|
|
display: block;
|
|
width: 100%;
|
|
background: #222;
|
|
color: white;
|
|
outline: none;
|
|
border: none;
|
|
font-size: 1.1em;
|
|
padding: 2px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
|