File tree Expand file tree Collapse file tree 1 file changed +58
-1
lines changed Expand file tree Collapse file tree 1 file changed +58
-1
lines changed Original file line number Diff line number Diff line change 22
22
50% {
23
23
opacity : 1 ;
24
24
}
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
+ }
You can’t perform that action at this time.
0 commit comments