-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobot.css
More file actions
80 lines (77 loc) · 1.23 KB
/
robot.css
File metadata and controls
80 lines (77 loc) · 1.23 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
*{
padding: 0px;
margin:0px;
}
h1{
text-align: center;
line-height: 100px;
}
.head-circle{
margin: auto;
width: 150px;
height:120px;
border-radius: 200px 200px 0px 0px;
background-color: #508be5;
display: flex;
justify-content: space-around;
align-items: center;
}
.head-circle:hover{
transition: 1s ease-out;
width: 240px;
}
.eye{
width: 15px;
height: 15px;
border-radius: 50%;
background-color:white;
position: relative;
top:40px;
}
.bottom{
margin: 10px auto;
width: 250px;
height: 150px;
display: flex;
justify-content: space-around;
}
.arm{
width: 33px;
height: 100px;
background-color: #508be5;
position: relative;
top:5px;
border-radius: 40px;
}
.arm:hover{
transform: rotate(15deg);
}
.body{
width: 150px;
height: 150px;
background-color: #508be5;
border-bottom-right-radius: 40px;
border-bottom-left-radius: 40px;
}
.last{
margin:auto;
width: 120px;
height: 80px;
display: flex;
justify-content: space-around;
position: relative;
top: -15px;
}
.foot{
width: 33px;
height: 60px;
background-color: #508be5;
position: relative;
border-top-left:transparent;
border-top-right:transparent;
border-bottom-right-radius: 40px;
border-bottom-left-radius: 40px;
}
.foot:hover{
transform: rotate(15deg);
}