-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight2.css
More file actions
367 lines (307 loc) · 8.69 KB
/
light2.css
File metadata and controls
367 lines (307 loc) · 8.69 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
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
background-color: transparent;
width: 300px;
height: 200px;
border: 1px solid #100e17;
perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
/* This container is needed to position the front and back side */
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
color: black;
}
/* Style the back side */
.flip-card-back {
color: white;
transform: rotateY(180deg);
}
.containerSkill{
background-image: linear-gradient(90deg,#fc4a1a,#f7b733);
padding-top: 19px;
}
.containerSkill img{
margin: auto;
}
.containerSkill p{
padding-bottom: 10px;
font-size: 1.5em;
font-weight: 700;
color: #100e17;
font-family: 'Poppins', sans-serif;
letter-spacing: 2px;
}
.skillbox{
display: flex;
justify-content: space-around;
}
.skillList
{
margin: 0;
padding: 0;
box-shadow: 0 15px 40px rgba(0,0,0,1);
}
.skillList li
{
position: relative;
list-style: none;
font-size: 1.5em;
padding: 15px;
color: #fff;
transition: 0.5s;
cursor: pointer;
box-sizing: border-box;
border-bottom: 2px solid rgba(0,0,0,.2);
font-family: 'Poppins', sans-serif;
}
.skillList li:last-child
{
border-bottom: none;
}
.skillList li:hover
{
color: #262626;
}
.skillList li:before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:linear-gradient(90deg,#fc4a1a,#f7b733);
z-index: -1;
transform: scaleY(0);
transition: 0.5s;
transform-origin: bottom;
}
.skillList li:hover:before
{
transform: scaleY(1);
transition: 0.5s;
transform-origin: top;
}
.skillList li:after
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg,#fc4a1a,#f7b733);
z-index: -2;
transform: scaleY(0);
transition: 0.5s;
transform-origin: bottom;
filter: blur(40px);
}
.skillList li:hover:after
{
transform: scaleY(1);
transition: transform 0.5s;
transform-origin: top;
}
.forSpace{
margin-top: 8%;
}@media screen and (max-width: 1024px)
{
#skills{
align-items: center;
justify-content: center;
}
.skillbox{
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#skillbox1,#skillbox2,#skillbox3{
padding: 20% 1%;
}
}
.card{
transform-style: preserve-3d ;
transform: perspective(1000px);
}
.card-body{
background :linear-gradient(90deg,#fc4a1a,#f7b733);
color: #100e17;
}
.btn-primary{
background: #100e17;
color: antiquewhite;
font-family:'Poppins', sans-serif ;
letter-spacing: 2px;
transform: translateZ(30px)
}
.btn-primary:hover{
transform: scale(1.15);
transition: all ease 0.5s;
background: #240046;
}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 2px solid rgb(250, 235, 215);
border-radius: 4px;
resize: vertical;
font-family: 'Poppins', sans-serif;
font-weight: 300;
letter-spacing: 2px;
background-color: rgb(250, 235, 215);
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
color: #100e17;
font-family: 'Poppins', sans-serif;
font-weight: 300;
letter-spacing: 2px;
font-size: 1.2em;
}
input[type=submit] {
background-color: rgb(250, 235, 215);
color: #100e17;
padding: 12px 30px;
width: 40%;
margin: 0 auto;
margin-top: 20px;
cursor: pointer;
font-family: 'Poppins', sans-serif;
font-weight: 800;
letter-spacing: 3px;
border: #100e17 2px solid;
border-radius: 25px;
}
input[type=submit]:hover {
background-color: #100e17;
background-size: 400% 400%;
color: #fc4a1a;
font-weight: 800;
transition: all ease 0.5s;
}
.parentcontainer{
width: 100%;
display: flex;
justify-content: space-between;
}
#contact .container {
background: linear-gradient(90deg,#fc4a1a,#f7b733);
padding: 20px ;
border-radius: 20px;
width: 60%;
margin-bottom:10% ;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 860px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
.parentcontainer{
flex-direction: column;
}
#contact .container{
width: 100%;
margin-bottom:10% ;
}
input[type=submit] {
background-color: #100e17;
background-size: 400% 400%;
color: #fc4a1a;
font-weight: 800;
margin-top: 10px;
}
#buttonList{
margin-left: -5vw;
}
#buttonList li{
}
#buttonList li a{
margin-top: 10%;
padding-top: 10%;
}
.contfooter{
width: 100%;
margin: auto;
flex-direction: column;
align-items: center;
}
}
#buttonList{
list-style: none;
height: 70%;
display: flex;
align-items: center;
justify-content: center;
}
#buttonList a{
text-decoration: none;
width: 60px;
height: 60px;
font-size: 20px;
margin: 30px;
color: #ff8a00;
}
#buttonList a:hover{
text-shadow:0px 0px 50px #fc4a1a;/*rgb(250, 235, 215);*/
color: #fc4a1a;
}
footer{
width:100%;
background:#100e17 ;
padding: 2%;
}
.contfooter{
width: 70%;
margin: auto;
display: flex;
justify-content: space-around;
}
.contfooter div p{
font-size: 14px;
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #ff8a00;
}
#contact{
margin-bottom: 10vh;
}