-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
400 lines (385 loc) · 18.1 KB
/
Copy pathindex.html
File metadata and controls
400 lines (385 loc) · 18.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WEEMLFPDKL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WEEMLFPDKL');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bio 15 Microbiology</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>>�</text></svg>">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="navbar-container">
<a href="index.html" class="navbar-brand">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10"/>
<circle cx="12" cy="12" r="4"/>
<circle cx="12" cy="4" r="1"/>
<circle cx="12" cy="20" r="1"/>
<circle cx="4" cy="12" r="1"/>
<circle cx="20" cy="12" r="1"/>
</svg>
Microbiology
</a>
<button class="mobile-menu-btn" aria-label="Toggle menu">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</button>
<ul class="navbar-nav">
<li><a href="final-review.html" class="nav-final">Final Review</a></li>
<li><a href="practice.html" class="nav-highlight">Practice Test</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<header class="hero">
<h1>Bio 15 Microbiology</h1>
<p>Study Guide for Professor Pierre's Class @ IVC</p>
</header>
<!-- Main Content -->
<main class="container">
<!-- Final Exam Review - Featured Hero -->
<a href="final-review.html" class="final-exam-review-card hero-card">
<div class="final-exam-review-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/>
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/>
<path d="M8 7h8M8 11h8M8 15h5"/>
</svg>
</div>
<div class="final-exam-review-content">
<h3>Final Exam Review</h3>
<p>Comprehensive review of all lecture chapters for the final exam</p>
<span class="final-exam-review-badge">Ch 1-9, 12, 13, 20 • Core Concepts • Visual Aids</span>
</div>
<div class="final-exam-review-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
<style>
/* Final Exam Review Card Styles - Hero */
.final-exam-review-card {
display: flex;
align-items: center;
gap: 2rem;
padding: 2rem 2.5rem;
background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
border-radius: 20px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
margin-bottom: 2.5rem;
position: relative;
overflow: hidden;
}
.final-exam-review-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
pointer-events: none;
}
.final-exam-review-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}
.final-exam-review-icon {
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
backdrop-filter: blur(10px);
}
.final-exam-review-icon svg {
width: 44px;
height: 44px;
stroke: white;
}
.final-exam-review-content {
flex: 1;
}
.final-exam-review-content h3 {
color: white;
font-size: 1.75rem;
margin: 0 0 0.5rem 0;
font-weight: 700;
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.final-exam-review-content p {
color: rgba(255, 255, 255, 0.95);
margin: 0 0 1rem 0;
font-size: 1.05rem;
}
.final-exam-review-badge {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.25);
color: white;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 600;
backdrop-filter: blur(10px);
}
.final-exam-review-arrow {
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.3s ease;
backdrop-filter: blur(10px);
}
.final-exam-review-arrow svg {
stroke: white;
width: 24px;
height: 24px;
}
.final-exam-review-card:hover .final-exam-review-arrow {
transform: translateX(6px);
}
@media (max-width: 768px) {
.final-exam-review-card {
flex-direction: column;
text-align: center;
padding: 2rem 1.5rem;
}
.final-exam-review-content h3 {
font-size: 1.5rem;
}
.final-exam-review-arrow {
display: none;
}
}
/* Lab Exam Review Card */
.lab-exam-review-card {
display: flex;
align-items: center;
gap: 2rem;
padding: 1.5rem 2rem;
background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
border-radius: 16px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 6px 24px rgba(6, 182, 212, 0.3);
margin-bottom: 2.5rem;
position: relative;
overflow: hidden;
}
.lab-exam-review-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
pointer-events: none;
}
.lab-exam-review-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 32px rgba(6, 182, 212, 0.4);
}
.lab-exam-review-icon {
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
backdrop-filter: blur(10px);
}
.lab-exam-review-icon svg {
width: 32px;
height: 32px;
stroke: white;
}
.lab-exam-review-content {
flex: 1;
}
.lab-exam-review-content h3 {
color: white;
font-size: 1.35rem;
margin: 0 0 0.25rem 0;
font-weight: 700;
}
.lab-exam-review-content p {
color: rgba(255, 255, 255, 0.9);
margin: 0;
font-size: 0.95rem;
}
.lab-exam-review-arrow {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.3s ease;
}
.lab-exam-review-arrow svg {
stroke: white;
width: 20px;
height: 20px;
}
.lab-exam-review-card:hover .lab-exam-review-arrow {
transform: translateX(4px);
}
@media (max-width: 768px) {
.lab-exam-review-card {
flex-direction: column;
text-align: center;
padding: 1.5rem 1.25rem;
}
.lab-exam-review-arrow {
display: none;
}
}
</style>
<!-- Lab Exam 2 Review -->
<a href="labs/lab-exam-2-review.html" class="lab-exam-review-card">
<div class="lab-exam-review-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M9 3h6v2H9zM9 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/>
<path d="M9 12h6M9 16h4"/>
<circle cx="12" cy="8" r="1"/>
</svg>
</div>
<div class="lab-exam-review-content">
<h3>Lab Exam 2 Review</h3>
<p>Exercises 13, 15, 16, 43, 54, 56, 60, 61 - Staining, Media, Biochemical Tests</p>
</div>
<div class="lab-exam-review-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
<!-- Study Chapters Section -->
<div class="section-divider">
<span class="section-divider-text">Chapter Review</span>
</div>
<h2 class="section-title">Study Chapters</h2>
<p class="text-center mb-4" style="color: var(--text-secondary); max-width: 700px; margin-left: auto; margin-right: auto;">
Select a chapter below to explore diseases organized by body system. Each chapter includes detailed information on causative agents, symptoms, pathogenesis, treatment, and completed study outlines.
</p>
<div class="chapter-grid">
<!-- Chapter 21 - Skin (Orange) -->
<a href="chapters/chapter21.html" class="chapter-card skin">
<div class="chapter-card-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"/>
<path d="M12 6v2M12 16v2M6 12h2M16 12h2"/>
</svg>
</div>
<h3>Chapter 21</h3>
<p>Diseases of the Skin</p>
<span class="chapter-card-badge">Staph, Strep, Viral, Fungal Infections</span>
</a>
<!-- Chapter 22 - Nervous (Purple) -->
<a href="chapters/chapter22.html" class="chapter-card nervous">
<div class="chapter-card-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2a9 9 0 0 0-9 9c0 3.6 3 6.5 4 9h10c1-2.5 4-5.4 4-9a9 9 0 0 0-9-9z"/>
<path d="M12 6v4l2 2"/>
</svg>
</div>
<h3>Chapter 22</h3>
<p>Diseases of the Nervous System</p>
<span class="chapter-card-badge">Meningitis, Tetanus, Rabies, Polio</span>
</a>
<!-- Chapter 24 - Respiratory (Blue) -->
<a href="chapters/chapter24.html" class="chapter-card respiratory">
<div class="chapter-card-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 22c4-3 8-6 8-11a8 8 0 0 0-16 0c0 5 4 8 8 11z"/>
<path d="M12 11V7M9 9l3 2 3-2"/>
</svg>
</div>
<h3>Chapter 24</h3>
<p>Diseases of the Respiratory System</p>
<span class="chapter-card-badge">TB, Flu, COVID-19, Pertussis</span>
</a>
<!-- Chapter 25 - Digestive (Green) -->
<a href="chapters/chapter25.html" class="chapter-card digestive">
<div class="chapter-card-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2C8 2 4 4 4 8c0 2 1 3 2 4l-1 8h14l-1-8c1-1 2-2 2-4 0-4-4-6-8-6z"/>
<path d="M9 22h6"/>
</svg>
</div>
<h3>Chapter 25</h3>
<p>Diseases of the Digestive System</p>
<span class="chapter-card-badge">Salmonella, E. coli, Cholera, H. pylori</span>
</a>
<!-- Chapter 26 - Urinary/Reproductive (Pink) -->
<a href="chapters/chapter26.html" class="chapter-card urinary">
<div class="chapter-card-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2c-4 0-8 3-8 8v4c0 4 4 8 8 8s8-4 8-8v-4c0-5-4-8-8-8z"/>
<path d="M12 8v8M8 12h8"/>
</svg>
</div>
<h3>Chapter 26</h3>
<p>Diseases of the Urinary & Reproductive Systems</p>
<span class="chapter-card-badge">STIs: Gonorrhea, Syphilis, HPV, Herpes</span>
</a>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-info">
<h3>Bio 15 Microbiology Study Guide</h3>
<p>Created for educational purposes</p>
</div>
<div class="footer-links">
<a href="https://www.linkedin.com/in/bryankhamly/" target="_blank" rel="noopener noreferrer" class="footer-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</svg>
LinkedIn
</a>
<a href="https://discord.com/users/topkekxd" target="_blank" rel="noopener noreferrer" class="footer-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/>
</svg>
topkekxd
</a>
<a href="mailto:bryankhamly@gmail.com" class="footer-link email">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/>
</svg>
Email
</a>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>