-
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathuser-experience-table.html
More file actions
457 lines (398 loc) · 12.9 KB
/
Copy pathuser-experience-table.html
File metadata and controls
457 lines (398 loc) · 12.9 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<!-- If you want to access the data from the backend.Please rename this file to .php and then use it. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Announcement Table</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="icon" type="image/x-icon" href="../images/favicon.ico">
<style>
/* body */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
/* Container */
.container {
max-width: auto;
margin: 0 auto;
padding: 15px;
}
/* Table Area */
.table-response {
border-radius: 10px;
overflow-x: auto;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 100%;
transition: all 0.3s ease;
}
/* Table */
table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background-color: white;
}
/* Table header */
th {
background-color: #856113;
color: white;
font-weight: 500;
text-transform: uppercase;
font-size: 16px;
padding: 15px;
text-align: center;
letter-spacing: 1px;
}
/* Table heading */
.heading {
margin-bottom: 60px;
}
/* Table data */
td {
padding: 15px;
text-align: center;
border-bottom: 1px solid #eaeaea;
vertical-align: middle;
color: #333;
font-weight: 200;
font-size: 15px;
}
/* Table row */
tr:hover {
background-color: #f9f9f9;
}
/* Table last row */
tr:last-child td {
border-bottom: none;
}
/* Stats Container */
.stats-container {
display: grid;
width: 40%;
margin: 0px auto;
padding: 20px;
align-items: center;
flex: auto;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 20px;
transition: all 0.3s ease;
min-width: 300px;
}
/* Stats Card */
.stat-card {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-top: 4px solid #856113;
}
/* Stats card hover */
.stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
transition: all 0.3s;
}
/* Stats number and label */
.stat-number {
font-size: 2rem;
font-weight: bold;
color: #856113;
}
.stat-label {
color: #666;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}
/* announcing banner*/
.announcement-banner {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(45deg, #856113, #b8941a);
color: rgb(239, 239, 239);
padding: 20px;
border-radius: 10px 10px 0 0;
text-align: center;
font-size: 1.4rem;
font-weight: 400;
position: relative;
overflow: hidden;
letter-spacing: 4px;
width: 100%;
box-sizing: border-box;
transition: all 0.3s ease;
}
.announcement-banner::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
animation: shine 1s infinite;
}
/* Shine property for the banner */
@keyframes shine {
0% {
left: -100%;
}
100% {
left: 100%;
}
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
.stats-container {
width: 60%;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 15px;
}
th,
td {
padding: 12px 8px;
font-size: 15px;
}
}
@media screen and (max-width: 768px) {
.container {
padding: 10px;
}
.heading {
font-size: 1.8rem;
margin-bottom: 40px;
}
.stats-container {
width: 90%;
grid-template-columns: 1fr;
gap: 15px;
padding: 15px;
margin-bottom: 15px;
}
.stat-card {
padding: 20px;
}
.stat-number {
font-size: 1.5rem;
}
.stat-label {
font-size: 0.8rem;
}
.announcement-banner {
font-size: 1.1rem;
padding: 15px;
letter-spacing: 2px;
}
table {
min-width: 900px;
}
th,
td {
padding: 10px 6px;
font-size: 14px;
white-space: nowrap;
}
th {
font-size: 13px;
}
}
@media screen and (max-width: 480px) {
.heading {
font-size: 1.5rem;
margin-bottom: 30px;
}
.stats-container {
width: 95%;
padding: 5px;
gap: 10px;
}
.stat-card {
width: 75%;
position: relative;
left: 17px;
padding: 9px;
}
.stat-number {
font-size: 1.3rem;
}
.stat-label {
font-size: 0.75rem;
}
.announcement-banner {
font-size: 1rem;
padding: 12px;
letter-spacing: 1px;
}
.announcement-banner marquee {
font-size: 0.9rem;
}
table {
min-width: 800px;
}
th,
td {
padding: 8px 4px;
font-size: 13px;
}
th {
font-size: 12px;
}
/* Scroll indicator for small screens */
.table-response::after {
content: " Scroll horizontally to view all columns ";
display: block;
text-align: center;
padding: 8px;
background: linear-gradient(90deg, #856113, #b8941a);
font-size: 11px;
color: white;
font-weight: 500;
letter-spacing: 1px;
}
}
@media screen and (max-width: 320px) {
.container {
padding: 5px;
}
.heading {
font-size: 1.3rem;
margin-bottom: 20px;
}
.stats-container {
width: 100%;
margin: 0 auto 10px auto;
}
table {
min-width: 700px;
}
th,
td {
padding: 6px 3px;
font-size: 12px;
}
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="../css/scroll-indicator.css" />
<!-- Floating Sidebar CSS -->
<link rel="stylesheet" href="../css/floating-sidebar.css">
</head>
<body>
<!-- Scroll Progress Indicator -->
<!-- PHP Code to display the stats card data from the data base -->
<!-- Container -->
<div class="container">
<!-- Heading -->
<h1 class="heading" style="color: #856113; text-align: center;">User Experience</h1>
<!-- Stats and Table -->
<form>
<!-- Stats Container -->
<div class="stats-container">
<!-- Stats Cards -->
<div class="stat-card">
<div class="stat-number" id="totalEvents">5</div>
<div class="stat-label">Total Feedbacks</div>
</div>
<div class="stat-card">
<div class="stat-number" id="openRegistrations">0</div>
<div class="stat-label">Total Messages</div>
</div>
</div>
<!-- Table Area-->
<div class="table-response">
<!-- Announcement Banner -->
<div class="announcement-banner">
<div class="scrolling-text">
<marquee class="scrolling-text" direction="left" scrollamount="5">
<i class="fa-solid fa-bullhorn"> User Feedbacks </i>
</marquee>
</div>
</div>
<!-- Table -->
<table>
<!-- Table Header -->
<thead>
<tr>
<th>Name</th>
<th>College</th>
<th>Year</th>
<th>Branch</th>
<th>Feedback</th>
<th>Message</th>
<th>Passing Year</th>
</tr>
</thead>
<!-- Table body -->
<tbody>
<!-- PHP CODE HERE -->
<tr>
<td>Ghanshyam</td>
<td>Nitra technology campus</td>
<td>3</td>
<td>CSE</td>
<td>5 Star</td>
<td>This is helpful for all NTCians</td>
<td>2027</td>
</tr>
<tr>
<td>Yuvraj</td>
<td>Nitra technology campus</td>
<td>3</td>
<td>CSE</td>
<td>5 Star</td>
<td>This is helpful for all NTCians</td>
<td>2027</td>
</tr>
<tr>
<td>Vansh</td>
<td>Nitra technology campus</td>
<td>3</td>
<td>CSE</td>
<td>5 Star</td>
<td>This is helpful for all NTCians</td>
<td>2027</td>
</tr>
<tr>
<td>Abhishek Sanu</td>
<td>Nitra technology campus</td>
<td>3</td>
<td>CSE</td>
<td>5 Star</td>
<td>This is helpful for all NTCians</td>
<td>2027</td>
</tr>
<tr>
<td>Sarthak Singh</td>
<td>Nitra technology campus</td>
<td>3</td>
<td>CSE</td>
<td>5 Star</td>
<td>This is helpful for all NTCians</td>
<td>2027</td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
<div style="text-align: center;">
<h4 color="white">Total Visitors</h4>
<script type="text/javascript"></script>
<script type="text/javascript" src="https://www.freevisitorcounters.com/en/home/counter/1204905/t/13"></script>
</div>
<!-- Scroll features -->
<!-- Scroll features -->
<!-- <script src="../js/scroll-indicator.js"></script> -->
<!-- Floating Sidebar JavaScript -->
<!-- <script src="../js/sidebar.js"></script> -->
</body>
</html>