Macbook Key

by James Doyle

HTML

<div class="key">fn</div>
<div class="key">control</div>
<div class="key">option</div>

CSS

body {
margin: 30px;
background: #ddd;
}
.key {
    float: left;
    margin: 0 8px;
    color: #777;
    width: 50px;
    height: 70px;
    padding: 0 8px;
    font-family: Helvetica;
    background: #F5F5F6;
    line-height: 9em;
    font-size: 12px;
    border-radius: 6px;
    text-shadow: 0 1px 0 white;
    box-shadow: inset 0 1px 0 white, 
        inset 0 -1px 0 white,
        0 3px 0 #ddd,
        0 3px 0 3px rgba(0,0,0,0.7);
}