53 lines
954 B
CSS
53 lines
954 B
CSS
* {
|
|
background-color: #444941;
|
|
padding: 0;
|
|
margin: 10;
|
|
box-sizing: border-box;
|
|
font-family:Arial, Helvetica, sans-serif;
|
|
}
|
|
.Formulario {
|
|
|
|
font-size: 20px;
|
|
width:400px;
|
|
height: 315px;
|
|
padding: 25px;
|
|
border-radius: 5%;
|
|
}
|
|
input[type="text"], input[type="password"]{
|
|
background:#D5EEBB;
|
|
/* align-items: center; */
|
|
border-radius: 5px;
|
|
display: block;
|
|
height: 30px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
h1{
|
|
color: #D5EEBB;
|
|
font-family: Jockey One;
|
|
|
|
}
|
|
#button{
|
|
background-color: #D5EEBB;
|
|
margin-top: 20px;
|
|
stroke: none;
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
font-weight: bold;
|
|
padding-top: 100px;
|
|
padding: 5px;
|
|
|
|
}
|
|
label{
|
|
color: #D5EEBBAA;
|
|
font-family: JejuMyeongjo;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
text-align: left;
|
|
}
|
|
.footer{
|
|
color: aliceblue;
|
|
}
|
|
|