-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevels_beginner.html
More file actions
265 lines (259 loc) · 8.32 KB
/
levels_beginner.html
File metadata and controls
265 lines (259 loc) · 8.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SignConnect | Beginner Modules</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #ffede7, #e0f7fa);
font-family: 'Poppins', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ff6e40" fill-opacity="0.05" d="M0,128L48,138.7C96,149,192,171,288,186.7C384,203,480,213,576,192C672,171,768,117,864,96C960,75,1056,85,1152,106.7C1248,128,1344,160,1392,176L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom;
background-size: 100% 100%;
z-index: -1;
animation: waveMove 10s infinite linear;
}
@keyframes waveMove {
0% { background-position: 0 bottom; }
100% { background-position: 100% bottom; }
}
.main-content {
flex: 1;
padding-bottom: 20px;
}
.navbar {
background: linear-gradient(to right, #ff6e40, #26c6da);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
color: #fff !important;
transition: color 0.3s ease;
}
.navbar-brand:hover {
color: #e0f7fa !important;
}
.logo-img {
height: 45px;
margin-right: 15px;
transition: transform 0.3s ease;
}
.logo-img:hover {
transform: rotate(15deg);
}
.navbar-nav .nav-link {
color: #fff !important;
font-weight: 500;
transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
color: #e0f7fa !important;
}
.progress-container {
width: 100%;
background: #fff;
border-radius: 10px;
padding: 5px;
margin: 20px 0;
}
.progress-bar {
height: 10px;
background: linear-gradient(to right, #26c6da, #ff6e40);
border-radius: 5px;
transition: width 0.3s ease;
}
.badge {
background: #d81b60;
color: #fff;
padding: 5px 10px;
border-radius: 10px;
font-size: 0.9rem;
}
.card {
background: #fff;
border-radius: 15px;
padding: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255, 110, 64, 0.05), rgba(38, 198, 218, 0.05));
z-index: 0;
}
.card-content {
position: relative;
z-index: 1;
}
.card-hover:hover {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.card-hover:hover .card-content {
filter: brightness(1.1);
}
.card-img {
max-height: 150px;
object-fit: contain;
margin-bottom: 15px;
transition: transform 0.3s ease;
}
.card-hover:hover .card-img {
transform: scale(1.1);
}
.card-title {
font-size: 1.5rem;
font-weight: 700;
color: #ff6e40;
margin-bottom: 10px;
}
.card-text {
color: #5d4037;
font-size: 0.95rem;
}
.btn {
padding: 10px 20px;
border-radius: 10px;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-success {
background: linear-gradient(to right, #26c6da, #00acc1);
color: #fff;
border: none;
}
.btn-warning {
background: linear-gradient(to right, #ffb300, #ffca28);
color: #fff;
border: none;
}
.btn-danger {
background: linear-gradient(to right, #d81b60, #f06292);
color: #fff;
border: none;
}
.btn:hover {
transform: translateY(-2px);
opacity: 0.9;
}
.mascot {
position: absolute;
bottom: 20px;
right: 20px;
height: 80px;
animation: wave 2s infinite;
}
@keyframes wave {
0%, 100% { transform: rotate(0deg); }
50% { transform: rotate(15deg); }
}
@media (max-width: 768px) {
.card { padding: 15px; }
.card-img { max-height: 120px; }
.card-title { font-size: 1.2rem; }
.mascot { height: 60px; bottom: 10px; right: 10px; }
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark shadow">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="assets/logo.png" alt="Logo" class="logo-img">
<span>SignConnect</span>
</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ms-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="modulesDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">Modules</a>
<ul class="dropdown-menu" aria-labelledby="modulesDropdown">
<li><a class="dropdown-item" href="beginner_modules.html">Beginner</a></li>
<li><a class="dropdown-item" href="intermediate_modules.html">Intermediate</a></li>
<li><a class="dropdown-item" href="advanced_modules.html">Advanced</a></li>
</ul>
</li>
<li class="nav-item"><a class="nav-link" href="dashboard.html">Dashboard</a></li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="container text-center main-content">
<div class="py-5" data-aos="fade-down">
<h1 class="text-primary mb-3">🌱 Beginner Mission: Foundations</h1>
<p class="lead text-secondary mb-3">Embark on your sign language adventure with these core modules!</p>
<div class="progress-container">
<div class="progress-bar" style="width: 20%;" aria-label="Beginner Progress"></div>
</div>
<span class="badge mt-2">Newbie Explorer</span>
</div>
<div class="row g-4" data-aos="fade-up">
<!-- Alphabet Module -->
<div class="col-md-4">
<div class="card card-hover">
<div class="card-content">
<img src="card_images/Alphabets.png" alt="Alphabet Sign" class="card-img">
<h3 class="card-title">🔤 Alphabets</h3>
<p class="card-text">Master A-Z with real-time gesture practice. Goal: 26 letters!</p>
<a href="module_alphabets.html" class="btn btn-success mt-3">Start Mission</a>
</div>
</div>
</div>
<!-- Numbers Module -->
<div class="col-md-4">
<div class="card card-hover">
<div class="card-content">
<img src="card_images/Numbers.png" alt="Numbers Sign" class="card-img">
<h3 class="card-title">🔢 Numbers</h3>
<p class="card-text">Learn 0-9 with interactive lessons. Goal: 10 numbers!</p>
<a href="module_numbers.html" class="btn btn-warning mt-3">Start Mission</a>
</div>
</div>
</div>
<!-- Basic Greetings Module -->
<div class="col-md-4">
<div class="card card-hover">
<div class="card-content">
<img src="card_images/Basic_Greetings.png" alt="Greetings Sign" class="card-img">
<h3 class="card-title">👋 Greetings</h3>
<p class="card-text">Master greetings like Hello and Thank you. Goal: 5 phrases!</p>
<a href="module_greetings.html" class="btn btn-danger mt-3">Start Mission</a>
</div>
</div>
</div>
</div>
<img src="assets/mascot.png" alt="Guiding Mascot" class="mascot" data-aos="fade-left" data-aos-delay="300">
</div>
<footer class="text-center p-3 bg-light mt-auto">
© 2025 SignConnect | Empowering Communication
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>