You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+75-23Lines changed: 75 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
100% {background-position:0%50%;}
22
22
}
23
23
24
-
h1,h2,h3,label {
24
+
h1,h3,label {
25
25
text-align: center;
26
26
color:#f1f1f1;
27
27
}
@@ -30,13 +30,21 @@
30
30
font-weight: normal;
31
31
font-size:16px;
32
32
color:#ccc;
33
+
text-align: center;
33
34
}
34
35
35
36
.section {
36
37
margin:30px auto;
37
38
text-align: center;
38
39
}
39
40
41
+
.section-left {
42
+
max-width:800px;
43
+
margin:30px auto;
44
+
text-align: left;
45
+
padding:020px;
46
+
}
47
+
40
48
form {
41
49
display: flex;
42
50
flex-direction: column;
@@ -95,19 +103,24 @@
95
103
.green { background-color:#4CAF50; }
96
104
.blue { background-color:#2196F3; }
97
105
98
-
pre,img {
99
-
padding:12px;
100
-
background:#f8f8f8;
101
-
color:#000;
102
-
border-radius:5px;
103
-
max-width:90%;
104
-
margin: auto;
106
+
.output-box {
107
+
background:rgba(255,255,255,0.1);
108
+
padding:15px;
109
+
border:1px solid #66d9ef;
110
+
border-radius:8px;
111
+
color:#e0f7fa;
112
+
font-size:14px;
113
+
font-family: monospace;
114
+
white-space: pre-wrap;
105
115
overflow-x: auto;
116
+
max-width:100%;
106
117
}
107
118
108
119
img {
109
120
display: block;
110
121
max-width:100%;
122
+
margin-top:10px;
123
+
border-radius:8px;
111
124
}
112
125
113
126
.hidden {
@@ -121,18 +134,54 @@
121
134
margin-top:60px;
122
135
}
123
136
124
-
.footera {
137
+
.footera,a {
125
138
color:#66d9ef;
126
139
text-decoration: none;
127
140
}
141
+
142
+
.dropdown-label {
143
+
text-align: left;
144
+
margin-left:20px;
145
+
font-weight: bold;
146
+
}
147
+
148
+
.more-note {
149
+
font-size:12px;
150
+
color:#aaa;
151
+
text-align: left;
152
+
margin-left:20px;
153
+
font-style: italic;
154
+
}
155
+
156
+
.description {
157
+
text-align: left;
158
+
max-width:800px;
159
+
margin:0 auto 20px;
160
+
padding:020px;
161
+
color:#ddd;
162
+
font-size:15px;
163
+
line-height:1.5;
164
+
}
165
+
166
+
.note {
167
+
font-size:13px;
168
+
color:#ccc;
169
+
margin-top:-5px;
170
+
margin-bottom:10px;
171
+
}
128
172
</style>
129
173
</head>
130
174
<body>
131
175
<h1>AI-DataScience-Lab</h1>
132
176
<h2>Built with Pandas, scikit-learn, and OpenAI GPT-3.5 API</h2>
133
177
<h2>(<ahref="https://github.com/Hariprashad-Ravikumar/AI-DataScience-Lab" target="_blank">View source code on Hari's GitHub</a>)</h2>
134
178
135
-
<!-- Upload description -->
179
+
<!-- Description -->
180
+
<divclass="description">
181
+
Upload your dataset to receive intelligent insights powered by AI. Our tool cleans your data, builds a predictive model, and explains the trends using OpenAI. Visualizations and downloadable reports included.
182
+
</div>
183
+
184
+
<!-- Upload -->
136
185
<divclass="section">
137
186
<h3>Upload your data file to get forecast using AI</h3>
138
187
<formid="uploadForm">
@@ -154,34 +203,36 @@ <h3>Upload your data file to get forecast using AI</h3>
0 commit comments