Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
body {
background: #ccc;
padding: 20px;
}
.left {
float: left;
margin-left: 20px;
}
.box {
width: 110px;
height: 110px;
background: #fff;
color: #9e9e9e;
margin: 0 auto;
margin-bottom: 20px;
text-align: center;
line-height: 100px;
}
.shadow-bottom {
box-shadow: 0 8px 10px -6px #000000;
}
.shadow-top {
box-shadow: 0 -8px 10px -6px #000000;
}
.shadow-left {
box-shadow: -8px 0 10px -6px #000000;
}
.shadow-right {
box-shadow: 8px 0 10px -6px #000000;
}
.inner-shadow-bottom {