-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTYLE.CSS
More file actions
600 lines (514 loc) · 13 KB
/
Copy pathSTYLE.CSS
File metadata and controls
600 lines (514 loc) · 13 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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background: linear-gradient(to right, #f2f6f7, #f4f6f8);
color: #333;
}
header {
background: #ced0d3;
color: white;
padding: 20px 0;
text-align: center;
}
/* Form */
.search-bar {
display: flex;
align-items: center;
gap: 10px;
}
/* Input */
.search-input {
flex: 1;
padding: 10px 15px;
font-size: 16px;
border: 2px solid #ddd;
border-radius: 5px;
outline: none;
transition: border-color 0.3s ease;
}
.search-input:focus {
border-color: #007BFF;
}
/* Buttons */
button {
background: none;
border: none;
cursor: pointer;
padding: 0;
}
.voice-search .voice-icon,
.image-search .image-icon,
.search-button .search-icon {
width: 24px;
height: 24px;
}
/* Button Hover */
button:hover {
opacity: 0.8;
transform: scale(1.05);
transition: all 0.2s ease-in-out;
}
header h1 {
font-size: 2.5rem;
}
nav {
background: #004080;
color: white;
padding: 10px;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
color: #00c6ff;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
}
/* About Me Section Styling */
.about {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 20px;
background: #f9f9f9;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
/* Image Styling */
.about img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border: 3px solid #004080;
}
/* Content Styling */
.about-content {
flex: 1;
}
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background: linear-gradient(to right, #dfe1e2, #acadaf);
color: #333;
}
header {
background: #002147;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
font-size: 2.5rem;
}
nav {
background: #004080;
color: white;
padding: 10px;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
color: #00c6ff;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
}
.about, .services, .portfolio, .contact {
margin: 20px 0;
padding: 20px;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 20px;
align-items: center;
}
.about img {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about ul {
list-style-type: none;
}
.about ul li {
margin: 10px 0;
font-size: 1.1rem;
}
.about ul li strong {
color: #004080;
}
.portfolio {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.portfolio img {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
footer {
background: #002147;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
footer p {
margin: 0;
}
/* Services Section Styling */
.services {
background: linear-gradient(to bottom, #f9f9f9, #e0e0e0);
padding: 40px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.services h2 {
text-align: center;
color: #002147;
margin-bottom: 20px;
font-size: 2rem;
}
.services-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.service-item {
background: white;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.service-item h3 {
font-size: 1.5rem;
color: #004080;
margin-bottom: 10px;
}
.service-item p {
font-size: 1rem;
color: #555;
}
.service-item .button {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background: rgb(239, 235, 235);
color: white;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s ease;
}
.service-item .button:hover {
background: whitesmoke;
}
/* Details Section Styling */
.details {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin-top: 20px;
padding: 20px;
background: #f9f9f9;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Individual Detail Box */
.detail-item {
text-align: center;
padding: 15px;
background: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.detail-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Icon Styling (Optional Placeholder) */
.detail-item i {
font-size: 1.5rem;
color: #e5e9ed;
margin-bottom: 10px;
display: inline-block;
}
/* Label and Value Styling */
.detail-item .label {
font-weight: bold;
color: #333;
margin-bottom: 5px;
display: block;
}
.detail-item .value {
font-size: 1rem;
color: #555;
}
/* Name Box Styling */
.about-name {
font-size: 1.8rem;
font-weight: bold;
color: #004080;
background: #e0f7ff;
padding: 10px 15px;
border-radius: 10px;
margin-bottom: 10px;
display: inline-block;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Paragraph Styling */
.about p {
font-size: 1rem;
line-height: 1.6;
color: #333;
margin-bottom: 20px;
}
/* Button Styling */
.about button {
background: #004080;
color: #fff;
font-size: 1rem;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.about button:hover {
background: #ff0077;
}
.portfolio {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.portfolio img {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
footer {
background: #002147;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
footer p {
margin: 0;
}
/* Position the Social Menu */
.social-menu {
position: absolute; /* Place relative to the page */
top: 10px; /* Distance from the top of the page */
right: 10px; /* Distance from the right edge */
display: flex; /* Arrange icons horizontally */
gap: 15px; /* Space between each icon */
z-index: 1000; /* Ensure it stays on top of other elements */
}
/* Style Each Social Media Link */
.social-menu a {
width: 40px; /* Width of the icon container */
height: 40px; /* Height of the icon container */
display: flex; /* Align content within the container */
align-items: center; /* Center vertically */
justify-content: center; /* Center horizontally */
text-decoration: none; /* Remove link underline */
border-radius: 50%; /* Make the container circular */
background-color: none; /* Default background for icons */
color: white; /* Default icon color */
font-size: 20px; /* Icon size */
transition: all 0.3s ease; /* Smooth hover effect */
}
/* Hover Effect */
.social-menu a:hover {
transform: scale(1.1); /* Slightly enlarge the icon */
background-color: rgb(165, 163, 42); /* Change background on hover */
}
/* Individual Brand Colors */
.facebook {
background-color: #0651f3; /* Facebook blue */
}
.facebook:hover {
background-color: #0e55f0; /* Darker shade on hover */
}
.twitter {
background-color: black; /* Twitter blue */
}
.twitter:hover {
background-color: #0084b4; /* Darker shade on hover */
}
.whatsapp {
background-color: #06f35d; /* WhatsApp green */
}
.whatsapp:hover {
background-color: #05f05b; /* Darker shade on hover */
}
.instagram {
background: radial-gradient(circle, #f80505, #ef4406, #ed0f30, #cc2366, #f808ac);
}
.instagram:hover {
background: radial-gradient(circle, #bc1888, #cc2366, #dc2743, #e6683c, #f09433);
}
.google {
background-color: #14aec9; /* Google red */
}
.google:hover {
background-color: #d1cdcc; /* Darker red on hover */
}
.youtube {
background-color: #ed0f08; /* YouTube red */
}
.youtube:hover {
background-color: #f11109; /* Darker red on hover */
}
.search-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px; /* Add some top margin */
}
/* Style the Search Form */
form {
display: flex;
align-items: center;
background-color: #f0f0f0; /* Light background for the bar */
border-radius: 25px; /* Rounded corners */
padding: 5px 10px; /* Padding inside the bar */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
/* Input Field Styles */
.search-input {
width: 300px; /* Width of the input field */
border: none; /* Remove default borders */
outline: none; /* Remove the blue outline on focus */
font-size: 16px; /* Font size for input text */
padding: 8px 10px; /* Padding inside the input */
border-radius: 25px; /* Match the bar's rounded corners */
background-color: transparent; /* Transparent background */
}
/* Button Styles */
.search-button {
border: none; /* Remove default button borders */
background-color: #007BFF; /* Primary color for the button */
color: white; /* White icon color */
padding: 10px 15px; /* Padding around the icon */
border-radius: 50%; /* Circular button */
cursor: pointer; /* Pointer cursor on hover */
transition: all 0.3s ease; /* Smooth hover effect */
}
/* Button Hover Effect */
.search-button:hover {
background-color: #0056b3; /* Darker shade on hover */
transform: scale(1.1); /* Slightly enlarge on hover */
}
/* Search Icon */
.search-button i {
font-size: 18px; /* Icon size */
}
/* Styling the Search Bar Container */
.search-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px; /* Add spacing from the top */
}
/* Style the Form */
form {
display: flex;
align-items: center;
background-color: #f9f9f9; /* Light gray background */
border-radius: 30px; /* Rounded corners */
padding: 5px 15px; /* Inner spacing */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
width: 400px; /* Form width */
max-width: 100%; /* Responsive for smaller screens */
}
/* Style the Input Field */
.search-input {
flex: 1; /* Make the input field take up available space */
border: none; /* Remove border */
outline: none; /* Remove focus outline */
font-size: 16px; /* Text size */
padding: 10px; /* Inner spacing */
border-radius: 30px; /* Match the form's rounded corners */
background-color: transparent; /* Transparent background */
margin-right: 10px; /* Space between input and image */
}
/* Input Placeholder Styling */
.search-input::placeholder {
color: #888; /* Light gray placeholder text */
font-style: italic; /* Italic placeholder text */
}
/* Style the Image */
form img {
width: 30px; /* Set image width */
height: 30px; /* Set image height */
border-radius: 50%; /* Make the image circular */
margin-right: 10px; /* Space between image and button */
object-fit: cover; /* Ensure the image fits within its dimensions */
}
/* Style the Button */
.search-button {
border: none; /* Remove border */
background-color: #007BFF; /* Primary blue color */
color: white; /* White icon color */
padding: 10px 12px; /* Inner button spacing */
border-radius: 50%; /* Circular button */
cursor: pointer; /* Pointer cursor on hover */
transition: all 0.3s ease; /* Smooth hover effect */
}
/* Button Hover Effect */
.search-button:hover {
background-color: #0056b3; /* Darker blue on hover */
transform: scale(1.1); /* Slightly enlarge on hover */
}
/* Search Icon */
.search-button i {
font-size: 18px; /* Size of the search icon */
}