-
Notifications
You must be signed in to change notification settings - Fork 0
/
mob.css
79 lines (68 loc) · 1.42 KB
/
mob.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.mob{
border: 2px solid;
display: inline-block;
position: absolute;
}
.fastMob{
width: 30px;
height: 30px;
background-color: yellow;
}
.bigMob{
width: 50px;
height: 50px;
background-color: red;
}
.thePusher{
width: 150px;
height: 150px;
background-image: linear-gradient(to right, rgba(0, 255, 242, 0.918), rgb(0, 26, 255));
}
.eater{
width: 35px;
height: 30px;
background-color: lightgreen;
}
.shooter{
width: 25px;
height: 25px;
background-color: whitesmoke;
}
.titan{
width: 100px;
height: 100px;
background-image: linear-gradient(to left, rgba(0, 255, 242, 0.918), rgb(0, 26, 255));
}
.springer{
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 50px solid lightskyblue;
margin:-25px 0 0 -25px;
-webkit-animation:spin 2s linear infinite;
-moz-animation:spin 2s linear infinite;
animation:spin 2s linear infinite;
}
.teleJani{
width: 40px;
height: 40px;
background-color: blueviolet;
}
.smartMob{
width: 50px;
height: 50px;
background-color: rgb(0, 162, 255);
}
@-moz-keyframes spin {
100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform:rotate(360deg);
}
}