conversor-monedas-personalizado
Version:
Un conversor de monedas simple con tasas de cambio actualizadas.
52 lines (44 loc) • 870 B
CSS
body {
font-family: Arial, sans-serif;
}
.container {
width: 300px;
margin: auto;
padding: 20px;
background-color: #f0f0f0;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
label {
display: block;
margin-bottom: 10px;
}
select, input[type="number"] {
width: 100%;
height: 30px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
}
button[type="submit"] {
width: 100%;
height: 40px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #0056b3;
}
#resultado {
font-size: 18px;
font-weight: bold;
margin-top: 20px;
}
#tasaCambio {
font-size: 16px;
margin-top: 10px;
}