-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·50 lines (46 loc) · 960 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
body {
background-color: #f0f0f0;
}
#animation-container {
height: 100%;
width: 100%;
margin: 40px;
position: relative;
background-color: #f0f0f0;
}
#animation-container .parent-ball {
border: 1px #f0f0f0 solid;
background-color: #fff;
position: absolute;
opacity: 1;
display: none;
border-radius: 50%;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
box-shadow: 0 0 30px 10px #f0f0f0;
left: 600px;
top: 200px;
width: 220px;
height: 220px;
animation: skewing 2s 1.5s ease-in-out infinite;
}
#animation-container .moving-ball {
border: 1px #f0f0f0 solid;
background-color: #fff;
position: absolute;
opacity: 1;
display: none;
border-radius: 50%;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
box-shadow: 0 0 30px 10px #f0f0f0;
}
#animation-container .moving-ball >img {
max-width: 80%;
}