File size: 1,162 Bytes
8003028 | 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 66 67 68 69 70 71 72 73 74 75 |
.panel p span {
font-weight: bold;
color: #1e88e5;
}
body {
font-family: Arial, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 20px;
}
.title {
text-align: center;
font-size: 32px;
font-weight: 800;
color: #1e88e5;
}
.upload-box {
margin: 20px auto;
padding: 20px;
width: 50%;
text-align: center;
border: 2px dashed #1e88e5;
background: #e3f2fd;
border-radius: 10px;
}
.row {
display: flex;
gap: 20px;
margin-top: 20px;
}
.panel {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
flex: 1;
}
.left-panel {
border-left: 6px solid #1e88e5;
}
.right-panel {
border-left: 6px solid #43a047;
}
.graph-section {
margin-top: 40px;
padding: 20px;
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
pre {
background: #f0f0f0;
padding: 10px;
border-radius: 6px;
}
.prediction p {
font-size: 16px;
margin: 4px 0;
}
.prediction span {
font-weight: bold;
}
|