-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
383 lines (341 loc) · 8.78 KB
/
profile.css
File metadata and controls
383 lines (341 loc) · 8.78 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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background: linear-gradient(135deg, #ececdb, #8d4fc3); /* Vibrant gradient background */
color: #333;
margin: 0;
padding: 0;
overflow-x: hidden;
}
/* Navigation Bar */
#home {
background: linear-gradient(to right, #5100bc, #7600bc);
padding-top: 1.5cm;
padding-bottom: 1.5cm;
margin: -1cm;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
/* Navigation Links */
.topmenu {
color: #f5e1ff;
margin: 10px;
padding: 10px 20px;
font-size: 20px; /* Increased font size for better readability */
text-decoration: none;
border-radius: 5px;
transition: all 0.3s ease-in-out;
text-transform: uppercase;
font-weight: bold;
}
.topmenu:hover {
color: #fff;
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.4);
}
/* Profile Name and Address Styling */
.profile_name {
padding-left: 2cm;
font-size: 28px; /* Increased font size */
font-weight: bold;
color: #ffffff;
font-style: italic;
text-shadow: 2px 2px 8px #7600bc; /* Added a glowing effect */
}
.contact_info {
font-size: 18px; /* Slightly larger font for address or contact info */
color: #f0e6ff;
display: flex;
align-items: center;
margin-top: 10px;
text-shadow: 1px 1px 5px #5100bc; /* Subtle shadow for elegance */
}
.contact_info img {
width: 30px;
height: 30px;
margin-right: 15px;
border-radius: 50%; /* Circular styling for icons */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
/* About Me Section */
#about-me {
display: flex;
flex-direction: column; /* Stack elements vertically */
align-items: center; /* Center-align content */
text-align: center; /* Center-align text */
margin: 30px auto; /* Center positioning */
padding: 20px;
background: linear-gradient(to right, #ff9a9e, #fad0c4); /* Vibrant gradient background */
border-radius: 15px; /* Rounded edges */
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
width: 80%; /* Adjust width for a balanced layout */
}
/* About Me Title */
#about-me h1 {
font-size: 40px; /* Bigger font size for the title */
color: #7600bc;
font-weight: bold;
margin-bottom: 20px;
text-shadow: 2px 2px 8px rgba(118, 0, 188, 0.8); /* Add glow effect */
letter-spacing: 3px; /* Elegant spacing between letters */
font-family: 'Cursive', 'Trebuchet MS', Arial; /* Stylish font */
}
/* About Me Description */
#about-me p {
font-size: 20px; /* Larger, clearer font for description */
color: #4a4a4a; /* Subtle contrast for readability */
line-height: 1.8; /* Improve text spacing */
margin: 0 10px; /* Add breathing room */
font-family: 'Verdana', sans-serif; /* Modern, clean font */
}
/* Profile Image */
.profile_image {
width: 200px; /* Adjust size */
height: auto;
border-radius: 50%; /* Circular styling */
margin: 15px 0; /* Space above and below */
border: 4px solid #7600bc; /* Add a border around the image */
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Shadow effect for depth */
}
/* Skills Section */
.all_skills {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px; /* Space between skills */
margin: 0 auto; /* Center alignment */
max-width: 800px; /* Adjust based on your layout */
}
.skill {
border: 2px solid #7600bc;
border-radius: 12px;
text-align: center;
margin: 15px;
padding: 20px;
width: calc(50% - 40px); /* Two skills per row */
font-size: 22px;
background: linear-gradient(to right, #d9a7c7, #fffcdc);
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
transition: 0.3s ease-in-out;
}
.skill h6 {
font-size: 28px; /* Larger font size for skill titles */
font-weight: bold;
color: #5100bc;
margin-bottom: 10px;
}
.skill:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Projects */
.project-card {
margin: 20px 30px;
padding: 20px;
border-radius: 10px;
background: #ffffff;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}
.project-card:hover {
box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
transform: scale(1.05);
}
/* Buttons */
button {
background: linear-gradient(to right, #ff7eb3, #ff758c);
border: none;
color: #fff;
font-size: 18px;
padding: 12px 20px;
border-radius: 10px;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
button:hover {
background: #fff;
color: #ff758c;
transform: scale(1.1);
border: 2px solid #ff758c;
}
/* Scroll to Top Button */
.iconbutton {
background: linear-gradient(to bottom, #7600bc, #5100bc);
color: #fff;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
right: 3%;
bottom: 3%;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease-in-out;
}
.iconbutton:hover {
transform: translateY(-10px);
box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5);
}
/* Footer Section */
footer {
background: linear-gradient(to right, #5100bc, #7600bc); /* Gradient for elegance */
padding: 30px;
text-align: center;
color: #ffffff; /* Bright text color for contrast */
font-size: 18px;
font-family: 'Verdana', sans-serif;
border-top: 4px solid #ffffff; /* Decorative top border */
letter-spacing: 1px;
}
footer a {
color: #ffd700; /* Gold-colored links for contrast */
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease-in-out;
}
footer a:hover {
color: #ffffff;
text-shadow: 0px 3px 8px rgba(255, 255, 255, 0.7);
}
/* Recommendations Section */
.all_recommendations {
display: flex;
flex-wrap: wrap;
justify-content: center; /* Center alignment */
gap: 30px; /* Space between recommendation cards */
padding: 40px 20px; /* Larger padding for breathing space */
background: linear-gradient(to right, #fad0c4, #ffd1ff); /* Vibrant background */
border-radius: 15px; /* Rounded edges for aesthetics */
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Add depth */
}
/* Individual Recommendation Cards */
.recommendation {
width: 350px;
padding: 20px;
border-radius: 10px;
background: #ffffff; /* Clean white background */
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
font-size: 18px;
color: #4a4a4a;
line-height: 1.8;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
position: relative;
}
.recommendation:hover {
transform: translateY(-10px);
box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
}
/* Highlighted Recommendation Author */
.recommendation span {
color: #7600bc;
font-size: 20px;
font-weight: bold;
display: block;
margin-top: 15px;
font-family: 'Cursive', 'Trebuchet MS', Arial;
}
/* Section Headings */
h2 {
font-size: 48px; /* Larger size for prominence */
font-weight: bold;
color: #7600bc; /* Vibrant color */
text-transform: uppercase;
text-align: center; /* Centered alignment */
margin-bottom: 30px;
letter-spacing: 2px; /* Add spacing for elegance */
text-shadow: 3px 3px 10px rgba(118, 0, 188, 0.4); /* Glow effect for emphasis */
font-family: 'Cursive', 'Trebuchet MS', Arial;
border-bottom: 3px solid #5100bc; /* Decorative underline */
padding-bottom: 10px;
}
/* Contact Section */
#contact fieldset {
border: 2px solid #ff758c;;
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#contact legend {
font-size: 1.5em;
font-weight: bold;
margin-bottom: 10px;
}
#contact input[type="text"],
#contact textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1em;
}
#contact button {
background: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
font-size: 1em;
border-radius: 4px;
cursor: pointer;
transition: background 0.3s ease;
}
#contact button:hover {
background: #45a049;
}
/* Icon Button */
.iconbutton a {
position: fixed;
bottom: 20px;
right: 20px;
text-decoration: none;
}
.iconbutton svg {
fill: #4CAF50;
transition: transform 0.3s ease;
}
.iconbutton svg:hover {
transform: scale(1.2);
}
/* Popup */
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.95);
padding: 20px;
text-align: center;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: none;
z-index: 1000;
}
.popup img {
width: 50px;
margin-bottom: 10px;
}
.popup h3 {
margin: 10px 0;
font-size: 1.2em;
}
.popup button {
background: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
.popup button:hover {
background: #45a049;
}
/* Show Popup (JavaScript Controlled) */
.popup.active {
display: block;
}