-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobot.css
More file actions
103 lines (103 loc) · 1.47 KB
/
robot.css
File metadata and controls
103 lines (103 loc) · 1.47 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
#cont {
width: 600px;
height: 1000px;
position: relative;
margin: auto;
}
.eye {
position: absolute;
width: 60px;
height: 60px;
border-radius: 30px;
border: black solid 1px;
}
#head {
width: 200px;
height: 200px;
background-color: green;
position: relative;
margin: auto;
}
#left_eye {
top: 20px;
left: 20px;
background-color: yellow;
}
#right_eye {
top: 20px;
right: 20px;
background-color: orange;
}
#mouth {
width: 160px;
height: 30px;
background-color: purple;
top: 120px;
left: 20px;
position: absolute;
}
#neck
{
position: relative;
width: 140px;
height:50px;
background-color: black;
margin: auto;
}
#bulk_body
{
position: relative;
width: 400px;
height: 600px;
margin: auto;
background-color: gray;
}
.leg
{
width: 80px;
height: 400px;
position: absolute;
padding-left: 40px;
padding-right: 40px;
}
#right_leg
{
background-color: red;
right: 0px;
}
#left_leg
{
background-color: blue;
left: 0px;
}
#leg_container
{
width:400px;
height: 400px;
position: relative;
margin: auto;
}
.arm
{
z-index: -1;
width: 120px;
height: 500px;
position: absolute;
top: -2px;
}
#left_arm
{
left: -133px;
background-color: orange;
transform: rotate(30deg);
-webkit-transform: rotate(30deg);
-ms-transform: rotate(30deg);
}
#right_arm
{
right: -133px;
background-color: yellow;
transform: rotate(-30deg);
-webkit-transform: rotate(-30deg);
-ms-transform: rotate(-30deg);
}