forked from iamrahulmahato/master-web-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
330 lines (299 loc) · 6.41 KB
/
navbar.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
@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);
width: 0%;
transition: width 0.3s ease;
}
.navbar ul li a:hover {
color: var(--accent-color);
transform: scale(1.05);
}
.navbar ul li a:hover::after {
width: 100%;
animation: underlineAnimation 0.3s forwards;
}
@keyframes underlineAnimation {
from {
width: 0%;
}
to {
width: 100%;
}
}
/* 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 */
}