Spaces:
Runtime error
Runtime error
File size: 1,694 Bytes
b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e ffcbe1c ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 ccf8f5e b0bb662 9118deb | 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | /* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: Arial, sans-serif;
background-color: #f4f7f6;
color: #333;
text-align: center;
}
/* Navbar Styling */
.navbar {
background-color: #2c3e50;
padding: 10px;
}
.nav-links a {
color: white;
text-decoration: none;
font-size: 16px;
}
.nav-links a:hover {
text-decoration: underline;
}
/* Main Form Container */
.form-result-container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2rem;
color: #2c3e50;
margin-bottom: 20px;
}
/* Input Field and Button */
.input-field {
margin: 20px 0;
text-align: left;
}
label {
font-size: 16px;
font-weight: bold;
color: #2c3e50;
}
input[type="file"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
button {
background-color: #3498db;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #2980b9;
}
/* Result Section */
.result-container {
margin-top: 30px;
}
.image-box {
margin-bottom: 20px;
}
.result-image {
width: 100%;
max-width: 400px;
height: auto;
border-radius: 8px;
}
h2 {
font-size: 1.5rem;
color: #2c3e50;
font-weight: normal;
}
.positive {
color: green;
font-weight: bold;
}
.negative {
color: red;
font-weight: bold;
}
|