-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
123 lines (110 loc) · 2.6 KB
/
styles.css
File metadata and controls
123 lines (110 loc) · 2.6 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body, html{
height:100%;
}
body{
margin: 0px;
background-color:#444;
font-size: 18px;
background-image: url(dancefloor.jpg);
}
body, a:link, a:visited, a:active{
color: lightblue;
}
.title, .addDancerButton, .lineupDancerButton, .pairDancerButton{
padding:5px 12px;
float:right;
}
.topbar{
height:32px;
background-color: #555;
}
.title{
background-color: #777;
}
.enlarge-blinky{
border-width: 20px !important;
border-radius: 20px !important;
}
.blinkyDancer{
border:10px solid red;
border-radius:10px;
position:absolute;
}
.enlarge {
width: 60px !important;
height: 60px !important;
}
.flipTurnDancer{
width: 40px;
height: 40px;
background-color: #333;
position: absolute;
margin: 0px auto;
-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
0% { -webkit-transform: perspective(120px) }
50% { -webkit-transform: perspective(120px) rotateY(180deg) }
100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }
}
@keyframes sk-rotateplane {
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
} 50% {
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
} 100% {
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
}
}
.wormDancer {
margin: 0px auto;
width: 50px;
height: 40px;
text-align: center;
font-size: 10px;
position: absolute;
}
.wormDancer > div {
background-color: #666;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.wormDancer .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.wormDancer .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.wormDancer .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.wormDancer .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
.wormDancer-hot > div{
background-color: red;
}
@-webkit-keyframes sk-stretchdelay {
0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
20% { -webkit-transform: scaleY(1.0) }
}
@keyframes sk-stretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
} 20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
}