-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
58 lines (56 loc) · 1.44 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
* {
margin: 0;
padding: 0; }
body {
width: 70%;
margin: 20px auto;
background-image: url("../img/background.png");
background-repeat: no-repeat;
background-size: 1000px 750px; }
#dancer {
position: relative;
width: 200px;
margin: 0 auto; }
#dancer:after {
content: "";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
#dancer x-head, #dancer x-throat, #dancer x-corpus, #dancer x-arm, #dancer x-leg {
position: relative;
margin: 0 auto;
z-index: 100; }
#dancer x-throat {
margin-top: -5px;
z-index: 90; }
#dancer x-arm {
position: absolute;
top: 150px;
z-index: 90;
-webkit-transform-origin: top;
-webkit-transition-duration: 0.15s; }
#dancer x-arm.left {
left: 20px;
<<<<<<< HEAD:main.css
-webkit-transform: rotateZ(45deg); }
=======
-webkit-transform: rotateZ(15deg);
background: url(../images/left_hand.png) no-repeat; }
#dancer x-arm.left.up {
-webkit-transform: rotateZ(165deg); }
#dancer x-arm.left.middle {
-webkit-transform: rotateZ(105deg); }
#dancer x-arm.left.down {
-webkit-transform: rotateZ(45deg); }
>>>>>>> added first move actions:css/main.css
#dancer x-arm.right {
right: 20px;
-webkit-transform: rotateZ(-45deg); }
#dancer x-leg.left {
float: left;
margin-left: 35px; }
#dancer x-leg.right {
float: right;
margin-right: 35px; }