Penguin by
Stiven Baçi
On: 3 Jun 2016
Personal site: http://stivibaci.github.io/
<center>
<div class="penguin-body">
<div class="penguin-head">
<div class="penguin-eyes">
<div class="left-eye">
<div class="left-eyeball"></div>
</div>
<div class="right-eye">
<div class="right-eyeball"></div>
</div>
</div>
</div>
<div class="penguin-nose"></div>
<div class="penguin-belly">
<div class="penguin-hands">
<div class="left-hand"></div>
<div class="right-hand"></div>
</div>
</div>
</div>
<div class="penguin-legs">
<div class="left-leg"></div>
<div class="right-leg"></div>
</div>
.penguin-body {
width: 200px;
height: 250px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
background-color: black;
}
.penguin-body .penguin-head {
padding-top: 30px;
}
.penguin-body .penguin-head .penguin-eyes {
display: inline-flex;
justify-content: center;
align-items: center;
}
.penguin-body .penguin-head .penguin-eyes .left-eye {
width: 25px;
height: 25px;
border-radius: 50px;
background-color: white;
margin-right: 15px;
}
.penguin-body .penguin-head .penguin-eyes .left-eye .left-eyeball {
width: 10px;
height: 10px;
border-radius: 50px;
background-color: black;
margin-top: 8px;
}
.penguin-body .penguin-head .penguin-eyes .right-eye {
width: 25px;
height: 25px;
border-radius: 50px;
background-color: white;
}
.penguin-body .penguin-head .penguin-eyes .right-eye .right-eyeball {
width: 10px;
height: 10px;
border-radius: 50px;
background-color: black;
margin-top: 8px;
}
.penguin-body .penguin-nose {
width: 0;
height: 0;
border-top: 7px solid orange;
border-left: 25px solid;
border-right: 25px solid;
margin-top: 4px;
}
.penguin-body .penguin-belly {
width: 155px;
height: 160px;
border-radius: 100px;
background-color: white;
position: relative;
top: 15px;
}
.penguin-hands {
display: inline-flex;
align-items: center;
margin-top: 21px;
}
.penguin-hands .left-hand {
width: 0;
height: 0;
border-top: 20px solid transparent;
border-right: 20px solid black;
border-bottom: 20px solid transparent;
margin-left: -38px;
margin-right: 190px;
}
.penguin-hands .right-hand {
width: 0;
height: 0;
border-top: 20px solid transparent;
border-left: 20px solid black;
border-bottom: 20px solid transparent;
}
.penguin-legs {
display: inline-flex;
align-items: center;
justify-content: center;
margin: -15px 0 0 0;
}
.penguin-legs .left-leg {
position: relative;
width: 45px;
height: 25px;
background: orange;
border-radius: 50% / 15%;
margin: 0 20px 0 0;
}
.penguin-legs .right-leg {
position: relative;
width: 45px;
height: 25px;
background: orange;
border-radius: 50% / 15%;
}
26