File size: 1,120 Bytes
5c72df4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #54819a;
}
h1 {
margin-bottom: 20px;
}
#uploadInput {
margin-bottom: 20px;
}
#uploadButton {
padding: 10px 20px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#uploadButton:hover {
background-color: #45a049;
}
#predictionResult {
margin-top: 20px;
font-weight: bold;
}
/* Added styles for uploaded image container */
#uploadedImageContainer {
display: flex;
justify-content: center;
align-items: center;
}
/* Added styles for disease information container */
#diseaseInfo {
margin-top: 20px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#diseaseInfo h2 {
margin-bottom: 10px;
color: #333;
}
#diseaseInfo div {
margin-bottom: 10px;
}
|