1+ body {
2+ width : 100wh ;
3+ height : 90vh ;
4+ color : # fff ;
5+ background : linear-gradient (-45deg , # EE7752, # E73C7E, # 23A6D5, # 23D5AB );
6+ background-size : 400% 400% ;
7+ -webkit-animation : Gradient 15s ease infinite;
8+ -moz-animation : Gradient 15s ease infinite;
9+ animation : Gradient 15s ease infinite;
10+ }
11+
12+ @-webkit-keyframes Gradient {
13+ 0% {
14+ background-position : 0% 50%
15+ }
16+ 50% {
17+ background-position : 100% 50%
18+ }
19+ 100% {
20+ background-position : 0% 50%
21+ }
22+ }
23+
24+ @-moz-keyframes Gradient {
25+ 0% {
26+ background-position : 0% 50%
27+ }
28+ 50% {
29+ background-position : 100% 50%
30+ }
31+ 100% {
32+ background-position : 0% 50%
33+ }
34+ }
35+
36+ @keyframes Gradient {
37+ 0% {
38+ background-position : 0% 50%
39+ }
40+ 50% {
41+ background-position : 100% 50%
42+ }
43+ 100% {
44+ background-position : 0% 50%
45+ }
46+ }
47+
48+ h1 ,
49+ h6 {
50+ font-family : 'Open Sans' ;
51+ font-weight : 300 ;
52+ text-align : center;
53+ position : absolute;
54+ top : 45% ;
55+ right : 0 ;
56+ left : 0 ;
57+ }
58+
59+ .shake {
60+ animation : shake-animation 4.72s ease infinite;
61+ transform-origin : 50% 50% ;
62+ }
63+ .element {
64+ margin : 0 auto;
65+ width : 150px ;
66+ height : 150px ;
67+ background : red;
68+ }
69+ @keyframes shake-animation {
70+ 0% { transform : translate (0 , 0 ) }
71+ 1 .78571% { transform : translate (5px , 0 ) }
72+ 3 .57143% { transform : translate (0 , 0 ) }
73+ 5 .35714% { transform : translate (5px , 0 ) }
74+ 7 .14286% { transform : translate (0 , 0 ) }
75+ 8 .92857% { transform : translate (5px , 0 ) }
76+ 10 .71429% { transform : translate (0 , 0 ) }
77+ 100% { transform : translate (0 , 0 ) }
78+ }
79+
80+ .backdrop {
81+ -moz-box-shadow : 0px 6px 5px # 111 ;
82+ -webkit-box-shadow : 0px 6px 5px # 111 ;
83+ box-shadow : 0px 2px 10px # 111 ;
84+ -moz-border-radius : 190px ;
85+ -webkit-border-radius : 190px ;
86+ border-radius : 190px ;
87+ }
88+
89+ .linktree {
90+ width : 120px ;
91+ height : 120px ;
92+ background-image : url ("https://avatars.githubusercontent.com/u/106186354?v=4" );
93+ background-size : cover;
94+ background-repeat : no-repeat;
95+ background-position : 50% 50% ;
96+ }
0 commit comments