-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (86 loc) · 1.52 KB
/
style.css
File metadata and controls
92 lines (86 loc) · 1.52 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
div{
margin: 0;
padding: 0;
}
div div,div header,div section{
background-color: #A4CA39;
position: relative;
}
.android{
width: 300px;
height: 400px;
margin: 50px auto;
}
div header{
width: 220px;
height: 100px;
border-radius: 100px 100px 0 0;
margin:0px auto;
}
div section{
width: 220px;
height: 150px;
border-radius: 0 0 30px 30px ;
margin:10px auto;
}
.l_ant{
width: 5px;
height: 50px;
border-radius: 20px ;
position: relative; top:-25%; left:25%;
transform:rotate(-30deg);
}
.r_ant{
width: 5px;
height: 50px;
border-radius: 20px ;
position: absolute; top:-25%; right:25%;
transform:rotate(30deg);
}
.l_eye{
background-color: #fff;
width: 20px;
height: 20px;
border-radius: 100% ;
position: relative; top:-25%; left:25%;
}
.r_eye{
background-color: #fff;
width: 20px;
height: 20px;
border-radius: 100% ;
position:absolute; top:25%; right:25%;
}
.l_arm{
width: 40px;
height: 120px;
border-radius: 50px ;
position:absolute; left:-45px;
}
.r_arm{
width: 40px;
height: 120px;
border-radius: 50px ;
position:absolute; right:-45px;
}
.l_leg{
width: 40px;
height: 100px;
border-radius: 50px ;
position:absolute; left:50px; bottom:-60px;
}
.r_leg{
width: 40px;
height: 100px;
border-radius: 50px ;
position:absolute; right:50px; bottom:-60px;
}
header:hover{
transform: rotate(-5deg) translate(-4px, -8px);
}
.l_arm:hover{
transform: rotate(15deg) translate(-14px, 0);
}
.r_arm:hover{
transform: rotate(-25deg) translate(14px, 0);
}