-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyles.css
374 lines (320 loc) · 10.2 KB
/
syles.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
body {
margin: 0 0 0 0;
}
/* Navigation bar start */
nav {
font-size: 17px;
font-family: 'Poppins', 'sans-serif';
}
.navbar {
padding-right: 100px;
padding-left: 100px;
}
.navbar-brand{
font-weight: bold;
}
.topnav a {
color: #ffffff;
}
.nav-link:hover, .navbar-brand:hover {
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
/* navigation bar ends */
/* Home Page Starts */
.animate-underline {
position: relative;
text-align: center;
}
.animate-underline::after {
content: "";
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%) scaleX(0);
width: 100%;
height: 2px;
background-color: #fff;
transition: transform 0.8s ease-in-out;
}
.underline-animated::after {
transform: translateX(-50%) scaleX(1);
}
#title {
background: rgb(2,0,36);
background: linear-gradient(180deg, rgba(2,0,36,1) 10%, rgba(5,5,51,1) 49%, rgba(11,11,41, 1) 100%);
}
.intro {
font-family: 'Poppins', 'sans-serif';
font-size: 10px;
padding-right: 100px;
padding-left: 100px;
}
.intro h1 {
font-size: 37px;
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
.text-color {
animation: animated-text 4s linear 1s 1 normal both,
animated-cursor 600ms linear infinite;
font-size: 70px;
background: linear-gradient(to left, #ffffff, #ffffff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
/* text animation */
.mytext {
height: 700px;
padding-top: 160px;
transform: translateX(-100%);
animation: slideInFromLeft 1s forwards;
}
@keyframes slideInFromLeft {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
.my-auto{
padding-top: 50px;
transform: translateX(100%);
animation: slideInFromRight 1s forwards;
}
@keyframes slideInFromRight {
from {
transform: translateX(100%);
}
to {
transform: translateX(0);
}
}
#skills {
background: linear-gradient(180deg, rgba(2,0,36,1) 10%, rgba(5,5,51,1) 49%, rgba(11,11,41, 1) 100%);
color: #fff;
padding: 50px;
text-align: center;
}
.skills-container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
max-width: 800px;
margin: 0 auto;
margin-top: 50px;
}
.skill {
width: calc(33.33% - 20px);
padding: 40px;
background-color: rgba(255, 255, 255, 0.1);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
border-radius: 10px;
text-align: left;
margin-bottom: 40px;
transform: translateY(50%);
opacity: 0;
transition: all 0.6s ease-in-out;
}
.visible {
transform: translateY(0);
opacity: 1;
}
.skill:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px #bbc7ce, 0 6px 6px #bbc7ce;
}
.skill h3 {
font-size: 24px;
margin-bottom: 20px;
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
.skill p {
font-size: 18px;
line-height: 1.5;
}
#certificates {
background: linear-gradient(180deg, rgba(2,0,36,1) 10%, rgba(5,5,51,1) 49%, rgba(11,11,41, 1) 100%); /* Background color */
color: #fff; /* White text color */
padding: 50px; /* Padding around the section */
text-align: center; /* Center align the text */
}
/* Certificates container */
.certificates-container {
display: flex; /* Display the certificates in a flexbox */
justify-content: space-between; /* Space the certificates evenly between the container */
align-items: center; /* Center the certificates vertically within the container */
flex-wrap: wrap; /* Wrap the certificates onto a new line if they can't fit in one row */
max-width: 800px; /* Limit the width of the container */
margin: 0 auto; /* Center the container horizontally */
animation: fadeIn 1s ease-in-out; /* Animation to fade in the certificates */
}
/* Individual certificate box */
.certificate {
width: calc(33.33% - 20px); /* Width based on the number of certificates and space between them */
padding: 20px; /* Padding within the certificate box */
background-color: rgba(255, 255, 255, 0.1);
box-shadow: 2px 2px 10px #bbc7ce; /* Box shadow */
border-radius: 10px; /* Rounded corners */
text-align: center; /* Center align the text */
animation: fadeIn 1s ease-in-out; /* Animation to fade in each certificate */
animation-delay: 0.5s; /* Delay the animation for each certificate */
margin-top: 40px;
}
/* Certificate image */
.certificate img {
width: 200px; /* Image width */
height: 150px; /* Image height */
margin-bottom: 20px; /* Margin between the image and text */
animation: fadeIn 1s ease-in-out; /* Animation to fade in the image */
animation-delay: 1s;
}
.certificate h3{
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
.certificate:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.cer1{
opacity: 0;
transform: translateX(50px);
transition: all 0.5s ease-in-out;
}
.cer2{
opacity: 0;
transform: translateX(-50px);
transition: all 0.5s ease-in-out;
}
.cer1.animate, .cer2.animate {
opacity: 1;
transform: translateX(0);
}
/* Project section */
#projects {
background: linear-gradient(180deg, rgba(2,0,36,1) 10%, rgba(5,5,51,1) 49%, rgba(11,11,41, 1) 100%); /* Background color */
color: #fff; /* White text color */
padding: 50px; /* Padding around the section */
text-align: center; /* Center align the text */
}
.pro{
width: calc(33.33% - 20px);
padding: 40px;
background-color: rgba(255, 255, 255, 0.1);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
border-radius: 10px;
text-align: left;
margin-bottom: 40px;
transform: translateY(50%);
opacity: 0;
transition: all 0.6s ease-in-out;
/* transform: translateY(50%);
opacity: 0;
transition: all 1s ease-in-out; */
/* opacity: 0;
animation: fadeIn 1s forwards; */
}
.pro.visible {
transform: translateY(0);
opacity: 1;
}
.pro h3{
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
.project-container {
display: flex; /* Display the certificates in a flexbox */
justify-content: space-between; /* Space the certificates evenly between the container */
align-items: center; /* Center the certificates vertically within the container */
flex-wrap: wrap; /* Wrap the certificates onto a new line if they can't fit in one row */
max-width: 800px; /* Limit the width of the container */
margin: 0 auto; /* Center the container horizontally */
animation: fadeIn 1s ease-in-out; /* Animation to fade in the certificates */
margin-top: 50px;
}
.project {
width: calc(100% / 3 - 20px);
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
margin: 10px;
text-align: center;
transition: all 0.3s ease-in-out;
}
.project:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
/* contact section */
#contact {
background: linear-gradient(180deg, rgba(2,0,36,1) 10%, rgba(5,5,51,1) 49%, rgba(11,11,41, 1) 100%); /* Background color */
color: #fff; /* White text color */
padding: 50px; /* Padding around the section */
text-align: center; /* Center align the text */
}
footer {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
padding: 50px 0;
margin-top: 50px;
border-radius: 25px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 800px;
margin: 0 auto;
}
.footer-left h3, .footer-right h3 {
margin-bottom: 20px;
font-size: 22px;
font-weight: bold;
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
.footer-left p, .footer-right p {
margin-bottom: 20px;
font-size: 16px;
}
.social-media-container {
display: flex;
}
.social-media-container a {
color: #fff;
margin-right: 20px;
transition: all 0.3s ease-in-out;
}
.social-media-container a:hover {
transform: translateY(-10px);
background: linear-gradient(to right, #2B86C5, #784BA0, #FF3CAC, #FAACA8, #FAACA8, #FAACA8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}