-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspinningMenu.css
55 lines (50 loc) · 891 Bytes
/
spinningMenu.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
.spinner {
display: inline-block;
background-repeat: no-repeat;
width: 300px;
height: 300px;
transition: transform 1s, rotate 1.5s;
background-size: contain;
}
.invisible {
height: 0px;
width: 0px;
overflow: hidden;
transform: scale(.01,.01) rotate(720deg);
}
#topOption {
background-size: contain;
display: inline-block;
width: 70px;
height: 70px;
position: absolute;
top: 15px;
left: 115px;
}
#leftOption {
background-size: contain;
display: inline-block;
width: 70px;
height: 70px;
position: absolute;
top: 115px;
left: 15px;
}
#bottomOption {
background-size: contain;
display: inline-block;
width: 70px;
height: 70px;
position: absolute;
bottom: 15px;
left: 115px;
}
#rightOption {
background-size: contain;
display: inline-block;
width: 70px;
height: 70px;
position: absolute;
top: 115px;
right: 15px;
}