-
Notifications
You must be signed in to change notification settings - Fork 0
/
ladybugStyle.css
163 lines (160 loc) · 2.73 KB
/
ladybugStyle.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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
.wrapper{
background-size:cover;
text-align:center;
}
html{
background-color: gray;
}
.ladybug{
width:130px;
height:150px;
border: solid 5px black;
background-color:red;
border-radius:50%;
display:flex;
margin:auto;
}
.wingLine{
width:0px;
height:150px;
border-left:solid 5px black;
left:62px;
position:relative;
}
.spot{
border:solid 5px black;
background-color:black;
position:absolute;
border-radius: 50%;
}
#spot1{
width:20px;
height:20px;
bottom:234px;
left:28px;
}
#spot2{
width:40px;
height:40px;
bottom:190px;
left:52px;
}
#spot3{
width:20px;
height:20px;
bottom:160px;
left:96px;
}
#spot4{
width:20px;
height:20px;
bottom:160px;
left:28px;
}
#spot5{
width:20px;
height:20px;
bottom:234px;
left:96px;
}
.leg{
background-color: black;
position: absolute;
}
#rightTop{
width: 8px;
height:25px;
top:8px;
left:125px;
border:solid 2px black;
border-radius: 20px 20px 0px 0px;
transform:rotate(55deg);
}
#rightMid{
width: 8px;
height:25px;
top:64px;
left:145px;
border:solid 2px black;
border-radius: 20px 20px 0px 0px;
transform:rotate(90deg);
}
#rightBottom{
width: 8px;
height:25px;
top:125px;
left:125px;
border:solid 2px black;
border-radius: 20px 20px 0px 0px;
transform:rotate(130deg);
}
#leftTop{
width: 8px;
height:25px;
top:8px;
left:-2px;
border:solid 2px black;
border-radius: 20px 20px 0px 0px;
transform:rotate(-48deg);
}
#leftMid{
width: 8px;
height:25px;
top:64px;
left:-18px;
border:solid 2px black;
border-radius: 20px 20px 0px 0px;
transform:rotate(270deg);
}
#leftBottom{
width: 8px;
height:25px;
top:125px;
left:0px;
border:solid 2px black;
border-radius: 20px 20px 0px 0px;
transform:rotate(230deg);
}
#leftEye{
width:25px;
height:25px;
border-radius: 50%;
box-shadow: 8px 4px 0px 0px yellow;
position: absolute;
transform: rotate(195deg);
left: 45px;
}
#rightEye{
width:25px;
height:25px;
border-radius: 50%;
box-shadow: 8px 4px 0px 0px yellow;
position: absolute;
transform: rotate(295deg);
left: 85px;
}
.head{
width:75px;
height:70px;
border: solid 5px black;
border-radius: 50px 50px 0px 0px;
background-color: black;
top:-65px;
left:17px;
position:relative;
}
div.eyes{
position: relative;
left:-102px;
top:-60px;
}
div.spots {
position: relative;
top: 136px;
left:-102px;
}
div.legs{
position:relative;
top: -3px;
left: -3px;
}