Abubakari's picture
update
e808895
raw
history blame
768 Bytes
/* style.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
main {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
form {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="number"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
button[type="submit"] {
padding: 10px 20px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #45a049;
}
#sepsis-result {
font-weight: bold;
}