-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbackend-team.html
More file actions
322 lines (283 loc) · 8.53 KB
/
backend-team.html
File metadata and controls
322 lines (283 loc) · 8.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Backend Team – First Bank of Nigeria</title>
<style>
/* ── Design tokens ── */
:root {
--navy: #00008B;
--gold: #FFDF00;
--white: #FFFFFF;
--navy-light: #0000b3;
--navy-dark: #000066;
--shadow: 0 4px 18px rgba(0,0,139,.18);
--radius: 6px;
--font: Verdana, Geneva, sans-serif;
}
/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: var(--font);
background: #f0f2f8;
color: #1a1a2e;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* ── Header ── */
header {
background: var(--navy);
color: var(--white);
display: flex;
align-items: center;
gap: 16px;
padding: 0 32px;
height: 68px;
box-shadow: 0 2px 10px rgba(0,0,139,.4);
position: sticky;
top: 0;
z-index: 100;
}
.logo-wrap {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
flex-shrink: 0;
}
.logo-img {
height: 48px;
width: auto;
flex-shrink: 0;
background: var(--white);
border-radius: 6px;
padding: 4px 8px;
display: block;
}
.header-divider {
width: 1px;
height: 36px;
background: rgba(255,255,255,.25);
margin: 0 8px;
}
.header-title {
font-size: 15px;
font-weight: 700;
color: var(--white);
letter-spacing: .02em;
}
/* Gold accent bar */
.gold-bar {
height: 4px;
background: var(--gold);
}
/* ── Main ── */
main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 48px 24px 64px;
}
/* ── Card ── */
.card {
background: var(--white);
border-radius: 12px;
box-shadow: var(--shadow);
padding: 40px 40px 36px;
max-width: 760px;
width: 100%;
border-top: 5px solid var(--navy);
}
/* ── Hero image ── */
.hero-img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 28px;
display: block;
border: 3px solid var(--gold);
}
/* ── Page heading ── */
.card h1 {
font-size: 24px;
font-weight: 700;
color: var(--navy);
margin-bottom: 6px;
letter-spacing: .01em;
}
.section-divider {
height: 3px;
width: 56px;
background: var(--gold);
border-radius: 2px;
margin: 10px 0 20px;
}
/* ── Section heading ── */
.card h2 {
font-size: 15px;
font-weight: 700;
color: var(--navy);
text-transform: uppercase;
letter-spacing: .06em;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}
.card h2::after {
content: '';
flex: 1;
height: 1px;
background: #dde1ef;
}
/* ── Body text ── */
.card p {
font-size: 13px;
line-height: 1.75;
color: #333;
margin-bottom: 28px;
}
/* ── Team member grid ── */
.team-list {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
margin-bottom: 8px;
}
.team-list li {
background: #f4f6fb;
border: 1px solid #dde1ef;
border-left: 4px solid var(--navy);
border-radius: var(--radius);
padding: 10px 14px;
font-size: 12px;
font-weight: 700;
color: var(--navy);
display: flex;
align-items: center;
gap: 8px;
transition: background .15s, border-color .15s;
}
.team-list li:hover {
background: var(--gold);
border-left-color: var(--navy-dark);
}
.team-list li .num {
font-size: 10px;
font-weight: 700;
color: var(--white);
background: var(--navy);
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.team-list li:hover .num {
background: var(--navy-dark);
}
/* ── Back button ── */
.btn-back {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 32px;
padding: 13px 24px;
background: var(--navy);
color: var(--gold);
font-family: var(--font);
font-size: 13px;
font-weight: 700;
letter-spacing: .04em;
text-decoration: none;
border-radius: var(--radius);
box-shadow: 0 3px 10px rgba(0,0,139,.25);
transition: background .18s, transform .12s, box-shadow .18s;
}
.btn-back::before { content: '‹'; font-size: 18px; line-height: 1; }
.btn-back:hover {
background: var(--navy-light);
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(0,0,139,.3);
}
.btn-back:active {
transform: translateY(0);
background: var(--navy-dark);
}
/* ── Footer ── */
footer {
background: var(--navy);
color: rgba(255,255,255,.55);
text-align: center;
font-size: 11px;
padding: 16px 24px;
letter-spacing: .05em;
}
footer span { color: var(--gold); font-weight: 700; }
/* ── Responsive ── */
@media (max-width: 480px) {
header { padding: 0 16px; }
.card { padding: 28px 18px 24px; }
.logo-img { height: 38px; }
.team-list { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- ══ HEADER ══ -->
<header>
<a class="logo-wrap" href="index.html" aria-label="First Bank of Nigeria – Home">
<img
class="logo-img"
src="https://www.firstbanknigeria.com/wp-content/uploads/2020/01/First-Bank.svg"
alt="First Bank of Nigeria"
/>
</a>
<div class="header-divider"></div>
<p class="header-title">Git Project Portal</p>
</header>
<div class="gold-bar"></div>
<!-- ══ MAIN ══ -->
<main>
<div class="card">
<!-- Hero image -->
<h1>Backend Team</h1>
<img src="https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=400&fit=crop" alt="Backend Team - Server & Database Engineers" style="width: 100%; max-width: 800px; height: auto; margin: 20px 0; border-radius: 8px;">
<div class="section-divider"></div>
<h2>Group Description</h2>
<p>The Backend Team is responsible for server-side development and database management.</p>
<h2>Team Members</h2>
<ol class="team-list">
<li><span class="num">1</span> Augustine Onihunwa</li>
<li><span class="num">2</span> Gbolahan Ayomide Akande</li>
<li><span class="num">3</span> Echi Nnanna Chukwuemeka</li>
<li><span class="num">4</span> Andrew Emmanuel</li>
<li><span class="num">5</span> Amarachi Ibeh</li>
<li><span class="num">6</span> Onyinye Ogbonna</li>
<li><span class="num">7</span> Adejumo John</li>
<li><span class="num">8</span> Victor Alli</li>
<li><span class="num">9</span> Ayooluwa Egunjobi</li>
<li><span class="num">10</span> Simileoluwa Benjamin</li>
<li><span class="num">11</span> Mairo Great Okorafor</li>
<li><span class="num">12</span> Faith Ubara-Collins</li>
<li><span class="num">13</span> Emegharaibe Precious</li>
<li><span class="num">14</span> Emmanuel Adinnu</li>
<li><span class="num">15</span> Ande Ikoti</li>
<li><span class="num">16</span> Jesse Takai Abagai</li>
</ol>
<a class="btn-back" href="index.html">Back to Home</a>
</div>
</main>
<!-- ══ FOOTER ══ -->
<footer>
© 2025 <span>First Bank of Nigeria</span> · Backend Team · All rights reserved.
</footer>
</body>
</html>