Skip to content

Commit c22ca8f

Browse files
committed
Revert "Revert "Merge branch 'main' of https://github.com/JulianPrieber/littlelink-custom""
This reverts commit f5ffdc1.
1 parent 96604bb commit c22ca8f

File tree

7 files changed

+62
-2
lines changed

7 files changed

+62
-2
lines changed

littlelink/css/animate.css

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,61 @@
2222
50% {
2323
opacity: 1;
2424
}
25-
}
25+
}
26+
27+
/* Rotating entrances */
28+
.rotate {
29+
animation-name: rotate;
30+
animation-duration: 3s;
31+
animation-fill-mode: both;
32+
transform-origin: center;
33+
}
34+
35+
@keyframes rotate {
36+
from {
37+
transform: rotate3d(0, 0, 1, -200deg);
38+
}
39+
40+
to {
41+
transform: translate3d(0, 0, 0);
42+
}
43+
}
44+
45+
46+
.fadein {
47+
animation-name: fadein;
48+
animation-duration: 3s;
49+
animation-fill-mode: both;
50+
}
51+
52+
53+
@keyframes fadein {
54+
from {
55+
opacity: 0;
56+
}
57+
58+
to {
59+
opacity: 1;
60+
}
61+
}
62+
63+
.parent {
64+
margin: auto;
65+
padding-top: 50px;
66+
position: relative;
67+
left: 34px;
68+
}
69+
.image1 {
70+
position: relative;
71+
width: 150px !important;
72+
min-width:150px;
73+
}
74+
75+
.image2 {
76+
position: relative;
77+
bottom: 38px;
78+
right: 107px;
79+
width: 55px !important;
80+
min-width: 55px;
81+
height: auto;
82+
}

littlelink/images/avatar.png

-1.7 KB
Binary file not shown.

littlelink/images/[email protected]

10.6 KB
Loading

littlelink/images/just-gear.svg

Lines changed: 1 addition & 0 deletions
Loading

littlelink/images/just-ll.svg

Lines changed: 1 addition & 0 deletions
Loading

littlelink/images/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

resources/views/home.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function update_color_scheme() {
8585
<!--<a class="button button-pinterest" href="#"><img class="icon" src="{{ asset('littlelink/icons/pinterest.svg') }}">Pinterest</a>-->
8686
</br></br>
8787

88-
<p>and {{ $countButton - 3 }} other button ...</p>
88+
<p>and {{ $countButton - 3 }} other buttons ...</p>
8989

9090
<hr class="my-4" style="display:none">
9191

0 commit comments

Comments
 (0)