Fry CSS
by mynameisdonald
HTML
<div id="marge">
<div class="head">
<div class="no-border body head-main"></div>
<div class="body mouth-lip2"></div>
<div class="body mouth-lip"></div>
<div class="no-border body neck"></div>
<div class="no-border body mouth"></div>
<div class="no-border body neck2"></div>
<div class="no-border body neck3"></div>
<div class="no-border mouth-smile"></div>
<div class="hair hair1 hair-circle"></div>
<!-- The ear -->
<div class="body ear">
<div class="no-border inner1"></div>
<div class="no-border inner2"></div>
<div class="no-border body clip"></div>
</div>
<!-- The right eye -->
<div class="right-eye">
<div class="no-border right-eye-pupil"></div>
<div class="no-border body eyelid-top"></div>
<div class="no-border body eyelid-bottom"></div>
</div>
<!-- The nose -->
<div class="no-border body nose"></div>
<div class="body nose-tip"></div>
<!-- The left eye -->
<div class="left-eye">
<div class="no-border left-eye-pupil"></div>
<div class="no-border body eyelid-top"></div>
<div class="no-border body eyelid-bottom"></div>
</div>
</div>
</div>
CSS
#marge *
{
position: absolute;
box-sizing:content-box;
-moz-box-sizing:content-box;
}
#marge
{
position: relative;
width: 140px;
height: 205px;
margin: 0 auto;
}
#marge .head *
{
border: 1px solid #110b00;
}
#marge .head .no-border
{
border: none;
}
#marge .head .body
{
background: #F5CAAB;
}
#marge .head .hair
{
background: #F0812F;
}
#marge .head .hair-circle
{
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
#marge .head .hair-main
{
top: 7px;
left: 29px;
width: 67px;
height: 133px;
-webkit-transform: rotate(-18deg);
-ms-transform: rotate(-18deg);
transform: rotate(-18deg);
border-radius: 19px 33px 0px 0px;
}
#marge .head .hair-main2
{
top: 5px;
left: 22px;
width: 58px;
height: 37px;
-webkit-transform: rotate(7deg);
-ms-transform: rotate(7deg);
transform: rotate(7deg);
border-radius: 50% 50% 50% 50%;
}
#marge .head .hair-main3
{
top: 63px;
left: 50px;
width: 90px;
height: 19px;
-webkit-transform: rotate(71deg);
-ms-transform: rotate(71deg);
transform: rotate(71deg);
border-radius: 50%;
}
#marge .head .hair-main4
{
top: 114px;
left: 88px;
width: 43px;
height: 12px;
-webkit-transform: rotate(67deg);
-ms-transform: rotate(67deg);
transform: rotate(67deg);
border-radius: 50%;
}
#marge .head .hair-main5
{
top: 46px;
left: 30px;
width: 30px;
height: 83px;
-webkit-transform: rotate(-20deg);
-ms-transform: rotate(-20deg);
transform: rotate(-20deg);
}
#marge .head .hair-main6
{
top: 140px;
left: 51px;
width: 17px;
height: 34px;
border-radius: 10px 22px 27px 10px;
-webkit-border-radius: 10px 22px 27px 10px;
-moz-border-radius: 10px 22px 27px 10px;
-webkit-transform: rotate(-15deg);
-ms-transform: rotate(-15deg);
transform: rotate(-15deg);
}
#marge .head .hair-main7
{
top: 179px;
...