-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDraw.css
More file actions
102 lines (100 loc) · 1.82 KB
/
Copy pathDraw.css
File metadata and controls
102 lines (100 loc) · 1.82 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
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
#body{
height: 200px;
width: 200px;
border:4px solid black;
border-radius: 50px 50px 0px 0px;
background-color: rgb(220, 194, 146);
margin: 0 auto;
margin-top: 20%;
}
#eye{
display: flex;
margin-top: 50px;
}
.eye1{
border: 4px solid black;
width: 40px;
height: 40px;
margin-left: 32.5px;
border-radius: 50px 50px;
background-color:rgb(101, 61, 10);
}
.eyecore1{
border: 4px solid black;
height: 10px;
width: 10px;
border-radius: 50px;
margin-left: 11px;
margin-top: 11px;
background-color: rgb(31, 30, 30);
}
.eye2{
border: 4px solid black;
width: 40px;
height: 40px;
margin-left: 40px;
border-radius: 50px 50px;
background-color: rgb(101, 61, 10);
}
.eyecore2{
border: 4px solid black;
height: 10px;
width: 10px;
border-radius: 50px;
margin-left: 11px;
margin-top: 11px;
background-color: rgb(31, 30, 30);
}
.mouth{
border: 4px solid black;
height: 15px;
width: 100px;
margin: 35px 30px 20px 45px;
border-radius: 5px 5px 50px 50px;
background-color: rgb(227, 241, 253);
}
.tonge{
border: 4px solid rgb(173, 56, 56);
width: 35px;
height: 35px;
margin-left: 30px;
background-color: rgb(213, 90, 90);
border-radius: 0px 0px 50px 50px;
}
.main{
display: flex;
justify-content: center;
width: 500px;
margin: 0 auto;
}
.body1{
border: 4px solid black;
width: 250px;
height: 200px;
background-color: rgb(45, 142, 110);
border-radius: 10px 10px 30px 30px;
}
.hand1, .hand2{
border: 4px solid black;
height: 30px;
width: 175px;
margin-top: 35px;
background-color: rgb(220, 194, 146);
}
.legs{
display: flex;
width: 200px;
margin: 0 auto;
height: 150px;
}
.leg1, .leg2{
border: 4px solid black;
margin-left: 45px;
width: 30px;
background-color: rgb(220, 194, 146);
}