-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
22 lines (20 loc) · 756 Bytes
/
style.css
File metadata and controls
22 lines (20 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.image_container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
}
.image_container img {
width: 400px;
height: 400px;
animation-name: kf;
animation-duration: 5s;
animation-iteration-count: infinite;
}
@keyframes kf {
0% { -webkit-transform:rotate(50deg); margin-top: 0% margin-left: 0%; margin-right: 10%}
25% { -webkit-transform:rotate(100deg); margin-top: 10% margin-left: 10%; margin-right: 0%}
50% { -webkit-transform:rotate(150deg); margin-top: 20% margin-left: 0%; margin-right: 10%}
75% { -webkit-transform:rotate(200deg); margin-top: 10%; margin-left: 10%; margin-right: 0%}
100% { -webkit-transform:rotate(250deg); margin-top: 0%; margin-left: 0%; margin-right: 10%}
}