45 lines
657 B
CSS
45 lines
657 B
CSS
.grid {
|
|
background-color: darksalmon;
|
|
}
|
|
|
|
#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;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input.formulario {
|
|
background-color: white;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
p, label {
|
|
//color: white;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
a.button {
|
|
-webkit-appearance: button;
|
|
-moz-appearance: button;
|
|
appearance: button;
|
|
|
|
background: darkred;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
color: white;
|
|
margin: 15px;
|
|
font-size: 15px;
|
|
} |