51 lines
758 B
CSS
51 lines
758 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
table {
|
|
width: 90%;
|
|
margin: 20px auto;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
background-color: #008cba;
|
|
color: white;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 15px;
|
|
background: #008cba;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Botón de volver */
|
|
.boton-volver {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 10px 15px;
|
|
background-color: #008cba;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.boton-volver:hover {
|
|
background-color: #005f7f;
|
|
}
|