-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcont.html
More file actions
310 lines (281 loc) · 11.6 KB
/
Copy pathcont.html
File metadata and controls
310 lines (281 loc) · 11.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Development Team</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #2b2d42;
--accent: #DAA520;
--dark-accent: #8B4513;
--text: #495057;
}
/* Base Styles */
body { /* Added basic font for context */
font-family: sans-serif;
margin: 0; /* Good practice */
padding: 0; /* Good practice */
}
.about-us {
padding: 6rem 1.25rem;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
}
.about-container {
max-width: 1200px;
margin: 0 auto;
}
/* Title Styling */
.section-title {
text-align: center;
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 4rem;
position: relative;
text-transform: uppercase;
letter-spacing: 2px;
}
.section-title::after {
content: '';
position: absolute;
bottom: -1.25rem;
left: 50%;
transform: translateX(-50%);
width: 6rem;
height: 0.25rem;
background: linear-gradient(90deg, var(--accent), var(--dark-accent));
border-radius: 2px; /* Added for smoother edges */
}
/* Developer Grid */
.developer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
margin-bottom: 4rem;
}
/* Developer Card */
.developer-card {
background: rgba(255,255,255,0.98);
padding: 2rem;
border-radius: 1.5rem;
box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
text-align: center; /* Center align content in card */
}
.developer-card:hover {
transform: translateY(-0.5rem);
box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.15);
}
/* Profile Section */
.dev-profile {
position: relative;
margin-bottom: 1.5rem;
}
.profile-icon {
width: 9.375rem; /* 150px */
height: 9.375rem; /* 150px */
border-radius: 50%;
overflow: hidden;
margin: -5rem auto 1.25rem; /* Pulls image up */
border: 0.25rem solid #fff;
box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
position: relative; /* Needed for ::after if used */
background-color: #eee; /* Placeholder color */
}
.profile-icon img {
width: 100%;
height: 100%;
object-fit: cover;
display: block; /* Remove potential space below img */
}
/* App Icons / Skill Icons */
.app-icons {
display: flex;
justify-content: center;
gap: 1rem;
margin: 1rem 0;
}
.app-icons i {
font-size: 1.75rem;
color: var(--primary);
transition: all 0.3s ease;
padding: 0.75rem;
border-radius: 50%;
background: rgba(218, 165, 32, 0.1); /* Light accent background */
}
.app-icons i:hover {
transform: scale(1.15);
color: var(--accent);
background: rgba(218, 165, 32, 0.2);
}
/* Developer Name */
.developer-card h3 { /* Target name specifically */
font-size: 1.5rem; /* Example size */
color: var(--primary);
margin-bottom: 0.5rem; /* Space below name */
margin-top: 0; /* Reset top margin */
}
/* Contact Info */
.contact-info {
margin: 1.5rem 0;
}
.contact-info p {
margin: 1rem 0;
color: var(--text);
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
font-size: 0.95rem;
word-break: break-all; /* Prevent long emails overflowing */
}
.contact-info p i { /* Style contact icons */
color: var(--accent);
width: 16px; /* Ensure consistent icon width */
text-align: center;
}
/* Social Links */
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1.5rem;
}
.social-icon {
width: 2.5rem; /* 40px */
height: 2.5rem; /* 40px */
border-radius: 50%;
display: grid; /* Simple centering */
place-items: center;
font-size: 1.25rem;
color: white;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
text-decoration: none; /* Ensure no underline */
}
.social-icon::after { /* Subtle overlay effect */
content: '';
position: absolute;
width: 100%;
height: 100%;
background: currentColor; /* Use icon's bg color */
opacity: 0.1;
transition: opacity 0.3s ease;
border-radius: 50%;
}
.social-icon:hover {
transform: translateY(-0.25rem);
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.social-icon:hover::after {
opacity: 0.2;
}
/* Social Media Colors */
.linkedin { background: #0e76a8; }
.medium { background: #00ab6c; }
.stack-overflow { background: #f48024; }
.behance { background: #1769ff; }
.dribbble { background: #ea4c89; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
/* .x-twitter { background: #000000; } */ /* Removed X style */
.whatsapp { background: #25D366; } /* Keep WhatsApp style */
/* Responsive Design */
@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}
.developer-card {
padding: 1.5rem;
}
.profile-icon {
width: 7rem;
height: 7rem;
margin-top: -4.5rem; /* Adjust based on new image size */
}
.developer-card h3 {
font-size: 1.3rem;
}
.app-icons i {
font-size: 1.5rem;
padding: 0.6rem;
}
.social-icon {
width: 2.25rem;
height: 2.25rem;
font-size: 1.1rem;
}
}
</style>
</head>
<body>
<section class="about-us" id="about">
<div class="about-container">
<div class="about-content"> <h2 class="section-title"> Development Team</h2>
<div class="developer-grid">
<div class="developer-card">
<div class="dev-profile">
<div class="profile-icon">
<img src="https://via.placeholder.com/150/4F46E5/FFFFFF?text=GV" alt="Gouri Vaidya"> </div>
<div class="app-icons">
<i class="fab fa-android" title="Android Development"></i>
<i class="fab fa-apple" title="iOS Development"></i>
<i class="fab fa-windows" title="Windows Development"></i>
</div>
</div>
<h3>Gouri Vaidya</h3>
<div class="contact-info">
<p><i class="fas fa-envelope"></i> gourivaidya@gmail.com</p>
<p><i class="fas fa-phone"></i> +91 7757953802</p>
</div>
<div class="social-links">
<a href="#" class="social-icon instagram" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon linkedin" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://wa.me/917757953802" target="_blank" class="social-icon whatsapp" aria-label="WhatsApp"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
<div class="developer-card">
<div class="dev-profile">
<div class="profile-icon">
<img src="https://via.placeholder.com/150/F59E0B/FFFFFF?text=AS" alt="Ashwini Savalgi"> </div>
<div class="app-icons">
<i class="fab fa-react" title="React Development"></i>
<i class="fab fa-node-js" title="Node.js Development"></i>
<i class="fab fa-aws" title="AWS Cloud"></i>
</div>
</div>
<h3>Ashwini Savalgi</h3>
<div class="contact-info">
<p><i class="fas fa-envelope"></i> ashwinisavalgi@gmail.com</p>
<p><i class="fas fa-phone"></i> +91 9822987078</p>
</div>
<div class="social-links">
<a href="#" class="social-icon instagram" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon linkedin" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://wa.me/919822987078" target="_blank" class="social-icon whatsapp" aria-label="WhatsApp"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
<div class="developer-card">
<div class="dev-profile">
<div class="profile-icon">
<img src="https://via.placeholder.com/150/10B981/FFFFFF?text=AC" alt="Anjali Chindarkar"> </div>
<div class="app-icons">
<i class="fab fa-google-play" title="Google Play"></i>
<i class="fab fa-android" title="Android Development"></i>
<i class="fab fa-js" title="JavaScript"></i>
</div>
</div>
<h3>Anjali Chindarkar</h3>
<div class="contact-info">
<p><i class="fas fa-envelope"></i> anjalichindarkar@.com</p> <p><i class="fas fa-phone"></i> +91 7757953802</p> </div>
<div class="social-links">
<a href="#" class="social-icon instagram" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon linkedin" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://wa.me/917757953802" target="_blank" class="social-icon whatsapp" aria-label="WhatsApp"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
</div> </div> </div> </section> </body>
</html>