forked from iamrahulmahato/master-web-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
438 lines (390 loc) · 8.38 KB
/
styles.css
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
body {
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
#root {
flex: 1;
}
.follow-us {
display: flex;
justify-content: center;
gap: 5px;
}
.follow-us a {
display: inline-flex;
align-items: center;
padding: 10px 10px;
color: #fff;
border: 2px solid transparent;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.follow-us a img {
width: 20px;
height: 20px;
margin-right: 10px;
filter: grayscale(100%);
transition: filter 0.3s;
}
.follow-us a:hover img {
filter: grayscale(0%);
animation-name: spin;
animation-duration: 2500ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {
transform: rotate(0deg) scale(1.3);
}
to {
transform: rotate(360deg) scale(1.3);
}
}
/* Specific styles for each social media platform */
.follow-us a.twitter {
background-color: #1DA1F2;
border-color: #1DA1F2;
}
.follow-us a.twitter:hover {
color: #1DA1F2;
background-color: #fff;
}
.follow-us a.facebook {
background-color: #1877F2;
border-color: #1877F2;
}
.follow-us a.facebook:hover {
color: #1877F2;
background-color: #fff;
}
.follow-us a.instagram {
background-color: #E4405F;
border-color: #E4405F;
}
.follow-us a.instagram:hover {
color: #E4405F;
background-color: #fff;
}
.follow-us a.linkedin {
background-color: #0077B5;
border-color: #0077B5;
}
.follow-us a.linkedin:hover {
color: #0077B5;
background-color: #fff;
}
p {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
unicode-bidi: isolate;
color: black;
}
@media (max-width: 1200px) {
.footer-container {
padding: 20px;
}
.mwd-footer-content {
text-align: center;
}
.tags.social {
justify-content: center;
}
.btn {
margin-top: 10px;
border-radius: 5px;
}
.btn-primary:hover {
background-color: #0056b3;
}
.btn-secondary:hover {
background-color: #6c757d;
}
}
.circle {
position: absolute;
width: 25px;
height: 25px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgb(244, 63, 94), rgb(253, 91, 118));
transition: transform 0.1s, left 0.1s, top 0.1s;
background-color: #f43f5e;
}
.circle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
}
/* Chatbot Container */
.chatbot-container {
position: fixed;
bottom: 34px;
/* Adjust as needed */
right: 100px;
/* Adjust as needed */
z-index: 1000;
/* Ensure it appears above other elements */
}
/* Chatbot Button */
.chatbot-button {
background-color: #007bff;
/* Change to your preferred color */
border: none;
border-radius: 50%;
padding: 5px;
/* Smaller padding */
cursor: pointer;
position: relative;
width: 50px;
/* Adjusted size */
height: 50px;
/* Adjusted size */
}
/* Button Image */
.chatbot-button img {
width: 30px;
/* Adjusted image size */
height: 30px;
/* Adjusted image size */
}
/* Tooltip Text */
.tooltip-text {
display: none;
/* Hide by default */
position: absolute;
bottom: 100%;
/* Position above the button */
right: 50%;
transform: translateX(50%);
background-color: #333;
/* Background color for tooltip */
color: #fff;
/* Tooltip text color */
padding: 5px;
border-radius: 5px;
white-space: nowrap;
/* Prevent text from wrapping */
}
/* Show Tooltip on Hover */
.chatbot-button:hover .tooltip-text {
display: block;
/* Show on hover */
}
/* Chat Window Styles */
.chat-window {
position: fixed;
bottom: 90px;
/* Adjust based on the button size */
right: 20px;
/* Same as the button */
width: 400px;
/* Smaller width */
height: 500px;
/* Fixed height for compactness */
border: 1px solid #ccc;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: none;
/* Hidden by default */
z-index: 1000;
/* Ensure it appears above other elements */
}
/* Iframe for Chatbot HTML */
#chat-iframe {
width: 100%;
/* Full width of the chat window */
height: calc(100% - 40px);
/* Height minus header */
border: none;
/* Remove border */
}
@keyframes appear {
from {
opacity: 0;
scale: 0.4;
}
to {
opacity: 1;
scale: 1;
}
}
.card {
animation: appear 5s linear;
animation-timeline: view();
animation-range: entry 0% cover 40%;
}
body {
font-family: 'Poppins', sans-serif;
min-height: 2000px; /* Add some height to enable scrolling */
margin: 0;
padding: 0;
}
/* Scroll to Top Button Styles */
.top-btn {
display: none;
width: 50px;
height: 50px;
position: fixed;
bottom: 23px;
right: 44px;
background-color: #ab45e7;
color: #ffffff;
border: none;
border-radius: 50%;
cursor: pointer;
font-size: 18px;
align-items: center;
justify-content: center;
}
.top-btn:hover {
background-color: #c91e57;
}
.source-code-btn {
color: white;
background-color: #f5f5dc;
padding: 10px 20px;
border: 2px solid #d4d4aa;
border-radius: 8px;
font-weight: 600;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.source-code-btn:hover {
background-color: #e0e0c1;
color: #222;
border-color: #c1c17d;
transform: translateY(-2px);
}
:root {
/* Light theme colors */
--bg-color-light: #ffffff;
--text-color-light: #333;
--accent-color-light: #ffa500; /* light orange */
/* Dark theme colors */
--bg-color-dark: #1c1c1c;
--text-color-dark: #f5f5f5;
--accent-color-dark: #ffcc80; /* lighter orange */
/* Default theme */
--bg-color: var(--bg-color-light);
--text-color: var(--text-color-light);
--accent-color: var(--accent-color-light);
}
/* Theme styles based on data-theme attribute */
[data-theme="dark"] {
--bg-color: var(--bg-color-dark);
--text-color: var(--text-color-dark);
--accent-color: var(--accent-color-dark);
}
/* Navbar container */
.navbar {
width: 100%;
padding: 15px 0;
background-color: var(--bg-color);
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid var(--accent-color);
}
/* Navbar list */
.navbar ul {
list-style: none;
display: flex;
gap: 20px;
margin: 0;
padding: 0;
}
/* Navbar items */
.navbar ul li {
position: relative;
}
/* Navbar links */
.navbar ul li a {
font-family: 'Poppins', sans-serif;
color: var(--text-color);
text-decoration: none;
padding: 8px 16px;
font-weight: 500;
font-size: 16px;
transition: color 0.3s ease, transform 0.3s ease;
position: relative;
}
/* Hover effect with futuristic line animation */
.navbar ul li a::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -5px;
height: 2px;
background-color: var(--accent-color);
transition: width 0.3s ease;
width: 0%;
}
.navbar ul li a:hover {
color: var(--accent-color);
transform: scale(1.05);
}
.navbar ul li a:hover::after {
width: 100%;
}
.share-section {
text-align: center;
}
#shareBtn {
background-color: #f71257;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Toggle theme button */
.theme-toggle {
position: absolute;
right: 20px;
background-color: transparent;
border: none;
cursor: pointer;
font-size: 18px;
color: var(--accent-color);
transition: transform 0.3s ease;
}
.theme-toggle:hover {
transform: scale(1.1);
}
.btn-container {
text-align: center; /* Center the buttons */
margin: 20px 0; /* Add some margin for spacing */
}
.nextPrevArrows {
display: flex; /* Use flexbox for next/prev buttons */
justify-content: center; /* Center the arrows */
margin-top: 10px; /* Margin for spacing */
}
.nextPrevArrows button {
background: #ff4d4d; /* Red background */
color: white; /* Text color */
border: none; /* Remove border */
border-radius: 5px; /* Rounded corners */
padding: 10px; /* Padding for size */
margin: 0 5px; /* Spacing between arrows */
cursor: pointer; /* Pointer cursor on hover */
font-size: 16px; /* Font size */
transition: background 0.3s ease; /* Smooth transition */
}
.nextPrevArrows button:hover {
background: #ff3333; /* Darker red on hover */
}