Unit Converter
/* styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
height: 100vh;
}
.converter-container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
padding: 20px;
text-align: center;
max-width: 400px;
width: 100%;
}
h1 {
color: #333;
}
.input-container {
margin: 20px 0;
}
input[type=”number”] {
width: 70px;
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
select {
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
span {
font-size: 16px;
margin: 0 10px;
}
button {
background-color: #007bff;
color: #fff;
border: none;
padding: 5px 10px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.result-container {
margin-top: 20px;
}
#result {
font-size: 18px;
color: #333;
font-weight: bold;
}