-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
58 lines (52 loc) · 1.34 KB
/
main.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
body {
font-size: 14px
}
.buttons {
text-align: center;
}
#auto-fetch-tools > p{
display: none;
}
#auto-fetch-tools.on > p {
display: block;
}
.dog img {
width: 500px;
}
button {
width: 150px;
font-size: 14px;
}
.spin {
-webkit-animation-name: spin;
-webkit-animation-duration: 4000ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: spin;
-moz-animation-duration: 4000ms;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: spin;
-ms-animation-duration: 4000ms;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
animation-name: spin;
animation-duration: 4000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@-moz-keyframes spin {
0% { -moz-transform: rotate(0deg) scale(.25);}
50% { -moz-transform: rotate(360deg) scale(1.0);}
100% { -moz-transform: rotate(720deg) scale(.25);}
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg) scale(.25);}
50% { -webkit-transform: rotate(360deg) scale(1.0);}
100% { -webkit-transform: rotate(720deg) scale(.25);}
}
@keyframes spin {
0% { transform: rotate(0deg) scale(.25);}
50% { transform: rotate(360deg) scale(1.0);}
100% { transform: rotate(720deg) scale(.25);}
}