Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bf8d09d

Browse files
committed
Flipped kit fix
1 parent 5a1786f commit bf8d09d

File tree

1 file changed

+37
-17
lines changed

1 file changed

+37
-17
lines changed

css/home.css

Lines changed: 37 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,10 @@ li.li-logo > a.brand-logo {
175175
opacity: 0;
176176
animation: falling-star 5s Infinite ease-out;
177177
-webkit-animation: falling-star 5s Infinite ease-out;
178-
moz-animation: falling-star 5s Infinite ease-out;
178+
-moz-animation: falling-star 5s Infinite ease-out;
179+
180+
-webkit-backface-visibility: hidden;
181+
transform: translateZ(0);
179182
}
180183

181184
@keyframes falling-star {
@@ -215,6 +218,12 @@ li.li-logo > a.brand-logo {
215218
animation: cowEyes 1s Infinite;
216219
-webkit-animation: cowEyes 1s Infinite;
217220
-moz-animation: cowEyes 1s Infinite;
221+
222+
transform: translateZ(0);
223+
-webkit-transform: translateZ(0);
224+
transform-style: preserve-3d;
225+
backface-visibility: hidden;
226+
-webkit-backface-visibility: hidden;
218227
}
219228

220229
@-webkit-keyframes cowEyes {
@@ -251,6 +260,10 @@ li.li-logo > a.brand-logo {
251260
border-width: 0 6.5em 30em 6.5em;
252261
border-color: transparent transparent #fff700 transparent;
253262
opacity: .1;
263+
264+
transform: translateZ(0);
265+
-webkit-transform: translateZ(0);
266+
-webkit-backface-visibility: hidden;
254267
}
255268

256269
.section-banner div.light-bubble {
@@ -261,14 +274,21 @@ li.li-logo > a.brand-logo {
261274
border-radius: 100%;
262275
background: #000;
263276
right: 6em;
264-
top: -100em;
277+
top: 15em;
278+
opacity: 0;
279+
overflow: hidden;
280+
281+
transform: translateZ(0);
282+
-webkit-transform: translateZ(0);
283+
-webkit-backface-visibility: hidden;
265284
}
266285

267286
.section-banner .bubble-1 {
268287
animation: bubbles 1s Infinite linear;
269288
-webkit-animation: bubbles 1s Infinite linear;
270289
-moz-animation: bubbles 1s Infinite linear;
271290
}
291+
272292
.section-banner .bubble-2 {
273293
animation: bubbles 1s Infinite linear;
274294
-webkit-animation: bubbles 1s Infinite linear;
@@ -277,6 +297,7 @@ li.li-logo > a.brand-logo {
277297
-webkit-animation-delay: .5s;
278298
-moz-animation-delay: .5s;
279299
}
300+
280301
.section-banner .bubble-3 {
281302
animation: bubbles 1s Infinite linear;
282303
-webkit-animation: bubbles 1s Infinite linear;
@@ -286,6 +307,19 @@ li.li-logo > a.brand-logo {
286307
-moz-animation-delay: 1s;
287308
}
288309

310+
@keyframes bubbles {
311+
0% {top: 35em;opacity: .5;}
312+
100% {top: 15em;opacity: 0;}
313+
}
314+
@-webkit-keyframes bubbles {
315+
0% {top: 35em;opacity: .5;}
316+
100% {top: 15em;opacity: 0;}
317+
}
318+
@-moz-keyframes bubbles {
319+
0% {top: 35em;opacity: .5;}
320+
100% {top: 15em;opacity: 0;}
321+
}
322+
289323
.social-links li {
290324
padding: 0.3em 0;
291325
}
@@ -296,27 +330,13 @@ li.li-logo > a.brand-logo {
296330
color: #fb8c00;
297331
}
298332

299-
300333
.social-links a:hover,
301-
/*.social-links a:visited,*/
334+
.social-links a:visited,
302335
.social-links a:focus {
303336
border-bottom: 1px dashed #fff;
304337
color: #fff;
305338
}
306339

307-
@keyframes bubbles {
308-
0% {top: 35em;opacity: .5;}
309-
100% {top: 15em;opacity: 0;}
310-
}
311-
@-webkit-keyframes bubbles {
312-
0% {top: 35em;opacity: .5;}
313-
100% {top: 15em;opacity: 0;}
314-
}
315-
@-moz-keyframes bubbles {
316-
0% {top: 35em;opacity: .5;}
317-
100% {top: 15em;opacity: 0;}
318-
}
319-
320340

321341
.section-logo {
322342
padding: 0px;

0 commit comments

Comments
 (0)