24 lines
310 B
CSS
24 lines
310 B
CSS
|
#logo {
|
||
|
width:80%;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
div.p-6 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
button, input[type="submit"] {
|
||
|
background: darkred;
|
||
|
border-radius: 5px;
|
||
|
padding: 5px;
|
||
|
color:white;
|
||
|
margin: 15px;
|
||
|
}
|
||
|
|
||
|
input.formulario {
|
||
|
background-color: white;
|
||
|
border-radius: 5px;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|