-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (89 loc) · 2.08 KB
/
styles.css
File metadata and controls
102 lines (89 loc) · 2.08 KB
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
/* General Body Styling */
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Fallback gradient since background.jpg is missing */
color: #333;
}
/* Hero Section */
.hero {
background-color: rgba(44, 160, 243, 0.8); /* Use a semi-transparent background color */
color: white;
padding: 40px;
text-align: center;
border-radius: 4px;
margin-bottom: 20px;
}
/* Upload Section */
.upload-section {
text-align: center;
margin-top: 20px;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
}
/* Preprocessing Options */
.preprocess-options {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.preprocess-options .form-check {
text-align: left;
}
/* Button Styling */
.upload-button,
.download-button {
background-color: #4a90e2;
border: none;
color: white;
padding: 12px 24px;
font-size: 1.1rem;
border-radius: 25px;
transition: background-color 0.3s ease;
text-decoration: none;
display: inline-block;
}
.upload-button:hover,
.download-button:hover {
background-color: #357ab8;
}
/* Download Section */
.download-section {
text-align: center;
margin-top: 20px;
}
/* Summary Section */
.summary-section {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
margin-top: 20px;
}
.summary-section table {
background: white;
color: #333;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Visualization Section */
.visualization-section {
margin-top: 40px;
}
.chart-container {
height: 400px;
width: 100%;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.visualization {
text-align: center;
margin-bottom: 20px;
}
/* Footer Styling */
footer {
margin-top: 30px;
padding: 15px 0;
background-color: rgba(240, 244, 248, 0.8); /* Use a semi-transparent footer */
text-align: center;
}