forked from iammohitsakhuja/student-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
436 lines (412 loc) · 18.4 KB
/
resources.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Student | Dashboard</title>
<!-- Normalize browser inconsistencies -->
<link rel="stylesheet" href="./css/normalize.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- Font Awesome -->
<script defer src="./js/fontawesome-all.min.js"></script>
<!-- MD Bootstrap -->
<link rel="stylesheet" href="./css/mdb.min.css">
<!-- Custom stylesheet -->
<link rel="stylesheet" href="./css/styles.css">
<style>
.content .card {
width: 80%;
}
.content .card .card-deck .card {
width: 100%;
}
@media screen and (max-width: 575px) {
.content .card {
width: 90%;
min-width: 0;
}
}
/* Scrollbar styling */
body::-webkit-scrollbar {
width: 9px;
}
body::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgb(2, 175, 175);
}
body::-webkit-scrollbar-track {
background-color: rgb(230, 223, 223);
border-radius: 10px;
}
</style>
</head>
<body>
<!-- Wrapper stretches to the whole viewport height -->
<div class="wrapper">
<!-- Sidebar -->
<nav id="sidebar" class="navbar sticky-top">
<div class="navbar-header">
<img src="./img/drake-ramoray.jpg" class="rounded-circle" alt="Profile picture">
<h5 class="navbar-brand m-1 text-white pl-2">Dr. Drake Ramoray</h5>
</div>
<!-- Navbar links -->
<ul class="navbar-nav">
<li class="nav-item active">
<a href="./index.html" class="nav-link btn btn-block btn-lg">
<i class="fas fa-newspaper fa-lg mr-1"></i>
<span>Feed</span>
<span class="badge red d-flex align-items-center justify-content-center">New</span>
</a>
</li>
<li class="nav-item btn-group">
<a href="#" class="nav-link btn btn-block btn-lg dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<i class="fas fa-graduation-cap fa-lg mr-1"></i>
<span>Grades</span>
</a>
<ul id="marks" class="dropdown-menu">
<li>
<a href="./grades-sem-1.html" class="nav-link dropdown-item">Semester 1</a>
</li>
<li>
<a href="./grades-sem-2.html" class="nav-link dropdown-item">Semester 2</a>
</li>
<li>
<a href="./grades-sem-3.html" class="nav-link dropdown-item">Semester 3</a>
</li>
<li>
<a href="./grades-sem-4.html" class="nav-link dropdown-item">Semester 4</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="./resources.html" class="nav-link btn btn-block btn-lg">
<i class="fas fa-file-alt fa-lg mr-1"></i>
<span>Resources</span>
<span class="badge badge-pill green d-flex align-items-center justify-content-center">14</span>
</a>
</li>
<li class="nav-item">
<a href="./attendance.html" class="nav-link btn btn-block btn-lg">
<i class="far fa-user-circle fa-lg mr-1"></i>
<span>Attendance</span>
</a>
</li>
</ul>
</nav>
<!-- Main -->
<main>
<!-- Topbar -->
<nav id="topbar" class="navbar navbar-expand-md sticky-top">
<!-- sidebar toggle button -->
<button id="topbar-toggler" class="navbar-toggler" type="button" data-toggle="collapse">
<span class="fas fa-align-left"></span>
</button>
<!-- topbar items toggle button -->
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#topbar-items">
<span class="fas fa-ellipsis-v"></span>
</button>
<!-- topbar items -->
<div class="navbar-collapse collapse" id="topbar-items">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#">
<i class="fa fa-envelope"></i>
<span>Contact</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#">
<i class="fas fa-credit-card"></i>
<span>Gate Pass</span>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link waves-effect waves-light dropdown-toggle" id="dropdown-items" data-toggle="dropdown">
<img src="img/drake-ramoray.jpg" class="rounded-circle" alt="profile picture">
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-menu-secondary">
<a class="dropdown-item waves-effect waves-light" href="#">Profile</a>
<a class="dropdown-item waves-effect waves-light" href="#">Feedback</a>
<a class="dropdown-item waves-effect waves-light" href="#">Log Out</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- Content -->
<div class="content">
<!-- First subject card -->
<article class="card card-cascade wider">
<section class="view gradient-card-header purple-gradient overlay d-flex align-items-center justify-content-center pt-2 pb-2">
<img src="./img/teachers/emma-stone.jpeg" class="rounded-circle" alt="Profile picture" height="60px" width="60px">
<h4 class="card-header">Emma Stone</h4>
</section>
<section class="card-body">
<!-- First card deck -->
<section class="card-deck">
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="indigo-text darken-4">
<i class="fas fa-sticky-note"></i>
Notes
</h6>
<p class="card-text">The magical world of La La Land</p>
<a class="btn btn-indigo" role="button" target="_blank">Download</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="indigo-text darken-4">
<i class="fas fa-sticky-note"></i>
Notes
</h6>
<p class="card-text">How NOT to fall and die</p>
<a class="btn btn-indigo" role="button" target="_blank">Download</a>
</section>
</section>
</section>
</section>
</article>
<!-- Second subject card -->
<article class="card card-cascade wider">
<section class="view gradient-card-header peach-gradient overlay d-flex align-items-center justify-content-center pt-2 pb-2">
<img src="./img/teachers/lalu.jpeg" class="rounded-circle" alt="Profile picture" height="60px" width="60px">
<h4 class="card-header">Lalu Prasad Yadav</h4>
</section>
<section class="card-body">
<section class="card-deck">
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="red-text darken-4">
<i class="fab fa-youtube"></i>
Video
</h6>
<p class="card-text">Politics in Machine Learning</p>
<a class="btn btn-danger" role="button" target="_blank">Watch video</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="indigo-text darken-4">
<i class="fas fa-sticky-note"></i>
Notes
</h6>
<p class="card-text">How to be a leader</p>
<a class="btn btn-indigo" role="button" target="_blank">Download</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="darken-4">
<i class="fas fa-book"></i>
Book
</h6>
<p class="card-text">Anand Kumar Book</p>
<a class="btn btn-elegant" role="button" target="_blank">Download illegal pdf</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="pink-text darken-4">
<i class="fas fa-file-alt"></i>
Assignment
</h6>
<p class="card-text">K-Map assignment</p>
<a class="btn btn-unique" role="button" target="_blank">Download assignment</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="red-text darken-4">
<i class="fab fa-youtube"></i>
Video
</h6>
<p class="card-text">Speech giving robot</p>
<a class="btn btn-danger" role="button" target="_blank">Watch video</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="deep-orange-text darken-4">
<i class="fas fa-file-powerpoint"></i>
Powerpoint Presentation
</h6>
<p class="card-text">A good teacher</p>
<a class="btn btn-deep-orange" role="button" target="_blank">Download ppt</a>
</section>
</section>
</section>
</section>
</article>
<!-- Ross Geller's card -->
<article class="card card-cascade wider">
<section class="view gradient-card-header aqua-gradient overlay d-flex align-items-center justify-content-center pt-2 pb-2">
<img src="./img/teachers/ross-geller.jpg" class="rounded-circle" alt="Profile picture" height="60px" width="60px">
<h4 class="card-header">Dr. Ross Geller</h4>
</section>
<section class="card-body">
<section class="card-deck">
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="darken-4">
<i class="fas fa-book"></i>
Book
</h6>
<p class="card-text">Prehistoric life</p>
<a href="https://www.amazon.in/Prehistoric-Life-Definitive-Visual-History/dp/075669910X" class="btn btn-elegant" role="button"
target="_blank">Buy book</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="deep-purple-text darken-4">
<i class="far fa-newspaper"></i>
Article
</h6>
<p class="card-text">Best places to see fossils</p>
<a href="https://www.smithsonianmag.com/travel/travel-through-time-national-fossil-day-180952992/" class="btn btn-deep-purple"
role="button" target="_blank">View article</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="red-text darken-4">
<i class="fab fa-youtube"></i>
Video
</h6>
<p class="card-text">Unagi</p>
<a href="https://www.youtube.com/watch?v=jbRVoTL5djs" class="btn btn-danger" role="button" target="_blank">Watch video</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="red-text darken-4">
<i class="fab fa-youtube"></i>
Video
</h6>
<p class="card-text">Artificial gas in gas cylinders</p>
<a href="https://www.youtube.com/watch?v=k7lKAKopkf4" class="btn btn-danger" role="button" target="_blank">Watch video</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="deep-purple-text darken-4">
<i class="far fa-newspaper"></i>
Article
</h6>
<p class="card-text">A successful marriage</p>
<a href="https://www.becomingminimalist.com/8-essentials-for-a-successful-marriage/" class="btn btn-deep-purple" role="button"
target="_blank">View article</a>
</section>
</section>
</section>
</section>
</article>
<!-- Third subject card -->
<article class="card card-cascade wider">
<section class="view gradient-card-header blue-gradient overlay d-flex align-items-center justify-content-center pt-2 pb-2">
<img src="./img/teachers/alexandra.jpeg" class="rounded-circle" alt="Profile picture" height="60px" width="60px">
<h4 class="card-header">Alexandra Daddario</h4>
</section>
<section class="card-body">
<section class="card-deck">
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="deep-orange-text darken-4">
<i class="fas fa-file-powerpoint"></i>
Powerpoint Presentation
</h6>
<p class="card-text">Flora & Fauna in a Rainforest</p>
<a class="btn btn-deep-orange" role="button" target="_blank">Download ppt</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="darken-4">
<i class="fas fa-book"></i>
Book
</h6>
<p class="card-text">Biology for Dummies!</p>
<a class="btn btn-elegant" role="button" target="_blank">Download pdf</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="indigo-text darken-4">
<i class="fas fa-sticky-note"></i>
Notes
</h6>
<p class="card-text">Man vs Wild</p>
<a class="btn btn-indigo" role="button" target="_blank">Download</a>
</section>
</section>
</section>
</section>
</article>
<!-- Fourth subject card -->
<article class="card card-cascade wider">
<section class="view gradient-card-header peach-gradient overlay d-flex align-items-center justify-content-center pt-2 pb-2">
<img src="./img/teachers/snoop-dogg.png" class="rounded-circle" alt="Profile picture" height="60px" width="60px">
<h4 class="card-header">Snoop Dogg</h4>
</section>
<section class="card-body">
<section class="card-deck">
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="pink-text darken-4">
<i class="fas fa-file-alt"></i>
Assignment
</h6>
<p class="card-text">Art of Living amongst Trees</p>
<a class="btn btn-unique" role="button" target="_blank">Download assignment</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="deep-purple-text darken-4">
<i class="far fa-newspaper"></i>
Article
</h6>
<p class="card-text">Everything to know about Cannabis</p>
<a href="https://hightimes.com/guides/marijuana-cannabis/" class="btn btn-deep-purple" role="button" target="_blank">View article</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="red-text darken-4">
<i class="fab fa-youtube"></i>
Video
</h6>
<p class="card-text">Thug Life</p>
<a href="https://www.youtube.com/watch?v=QZXc39hT8t4" class="btn btn-danger" role="button" target="_blank">Watch video</a>
</section>
</section>
<section class="card">
<section class="view overlay p-3 text-center">
<h6 class="red-text darken-4">
<i class="fab fa-youtube"></i>
Video
</h6>
<p class="card-text">Praise for other cultures</p>
<a href="https://www.youtube.com/watch?v=Ar4CJKf1LwE" class="btn btn-danger" role="button" target="_blank">Watch video</a>
</section>
</section>
</section>
</section>
</article>
</div>
<!-- Bootstrap dependencies -->
<!-- First jQuery, then Popper.js and lastly Bootstrap JS -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="js/mdb.min.js"></script>
<!-- Custom script -->
<script src="./js/scripts.js"></script>
</body>
</html>