delete

by Vladislav Altyncev

HTML

<div class="top">
    
</div>

CSS

.top {
    max-width:1200px;
    height:88px;
    display:block;
    margin:0 auto;
    
    background: #3F67A4;
    background: -webkit-linear-gradient(top, #3F67A4 0%,#2D4975 50%,#2A456E 100%);
    background:    -moz-linear-gradient(top, #3F67A4 0%,#2D4975 50%,#2A456E 100%);
    background:      -o-linear-gradient(top, #3F67A4 0%,#2D4975 50%,#2A456E 100%);
    background:         linear-gradient(to bottom, #3F67A4 0%,#2D4975 50%,#2A456E 100%);
    
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
    -webkit-box-shadow: 0px 3px 0px #f00;
    -moz-box-shadow: 0px 3px 0px #f00;
    box-shadow: 0px 3px 0px #f00;
}