Facebook-style header

by adamh

HTML

<div class="head">
</div>
<div class="body">
    <div id="frame"></div>
    <img id="portrait" src="http://placekitten.com/100/100" />
    <h1>Page Title</h1>
</div>

CSS

.head {
    background: #ddd;
    height: 200px;
}

.body {
    position: relative;
    background: white;
    height: 200px;
}

img#portrait {
    position: absolute;
    top: -50px;
    left: 40px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

div#frame {
    position: absolute;
    top: -62px;
    left: 28px;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background: rgba(255,255,255,0.8);
    border: 2px solid #fff;
}

h1 {
    padding-left: 160px;
    padding-top: 20px;
    font-family: Helvetica;
    font-size: 24px;
    font-weight: bold;
}