-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
179 lines (151 loc) · 3.02 KB
/
style.css
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: rgb(255, 255, 255);
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
}
h1 {
color: black;
}
h1:hover {
color: rgb(255, 42, 42);
}
#name {
text-align: center;
animation: textAnime 1s linear infinite alternate;
}
@keyframes textAnime {
0% {
color: white;
text-shadow: 0 0 10px black;
}
100% {
color: yellow;
text-shadow: 0 0 10px rgb(2, 0, 97);
}
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
li {
list-style-type: none;
}
a {
text-decoration: none;
color: white;
font-size: medium;
animation: textAnime 1s linear infinite alternate;
}
#plot-container {
text-align: center;
}
#plot1 {
margin-top: 20px;
border: 10px solid #ffffff5b;
background-color: rgba(95, 95, 95, 0.521);
}
#plot2 {
margin-top: 20px;
border: 10px solid #ffffff5b;
background-color: rgba(95, 95, 95, 0.226);
}
#plot3 {
margin-top: 20px;
border: 10px solid #ffffff5b;
background-color: rgba(95, 95, 95, 0.226);
}
#analysis {
margin-top: 20px;
}
#downloadCSV {
margin-top: 20px;
}
input#file-upload-button {
height: 60px;
width: 100px;
background-color: #00ff7f;
}
/* Styles for the download button */
/*
button {
padding: 10px 20px;
margin-top: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
#downloadCSV {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
} */
/* Styles for the loader */
#loader {
display: none; /* Initially hidden */
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 2s linear infinite; /* Apply animation */
}
/* Animation for the loader */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* tables */
.analysis-table {
background-color: rgb(0 0 0);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Soft black shadow */
padding: 20px;
display: flex;
flex-direction: column;
border-radius: 10px; /* Rounded corners */
overflow-wrap: break-word;
}
.table-cell {
padding: 12px; /* Increased padding */
border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Light border between cells */
font-size: 16px; /* Larger font size */
}
.table-row {
color: rgb(96 255 249); /* Dark red text for table rows */
}
.markedResult {
color: #00ff7f; /* Gold text */
font-size: 18px; /* Larger font size */
}
.title-table {
color: rgb(255 255 255); /* Dark gray text */
font-size: 20px; /* Larger font size */
}
/* canvas styles */
canvas {
width: auto;
margin: 20px;
}