Blog banner idea

by andrewdavey

HTML

<div id="banner">

        aboutcode.net
    
</div>

CSS

body{ padding: 0 }

#banner {
    height: 50px;
    font-family: Consolas;
    font-size: 30pt;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 3px #000;
    padding: 20px 20px 10px 20px;
    
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    
background: #7db9e8; /* Old browsers */
background: -moz-linear-gradient(top, #7db9e8 0%, #1e5799 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7db9e8), color-stop(100%,#1e5799)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #7db9e8 0%,#1e5799 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #7db9e8 0%,#1e5799 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #7db9e8 0%,#1e5799 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #7db9e8 0%,#1e5799 100%); /* W3C */
}