Gmail

by DoubleYo

HTML

<div id="enveloppe">
    <div id="liseret-rose"></div>
    <div id="bottom-pli">
        <div id="bottom-pli-trait"></div>
        <div id="bottom-pli-masque"></div>
    </div>
    
    
    <div id="top-pli">
        <div id="top-pli-trait"></div>
        <div id="top-pli-masque"></div>
    </div>
    
    <div id="red-vertical-border"></div>
</div>

http://www.memoclic.com/4-1204-1024x768/fond-ecran-gmail-la-messagerie-de-chez-google-sur-votre-bureau.jpg

CSS

body {
    background-color: #ccc;
}

#enveloppe {
    position:relative;
    width:511px;
    height:383px;
    background-color: #F5C5C5;
    overflow:hidden;
}

#liseret-rose, #red-vertical-border,
#bottom-pli, #bottom-pli-trait, #bottom-pli-masque,  
#top-pli, #top-pli-trait, #top-pli-masque {
    position:absolute;
}
#liseret-rose {
    top:30px;
    left:30px;
    width:451px; /*511*/
    height:323px; /*383*/
    background-color: white;
}


#bottom-pli {
    bottom:30px;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
}

#bottom-pli-trait {
    bottom:10px;
    left:0;
    width:0;
    height:0;
    border-style: solid;
    border-color: transparent transparent #F5C5C5 transparent;
    border-width: 191.5px 255.5px 191.5px 255.5px;
}

#bottom-pli-masque {
    bottom:-25px;
    left:0;
    width:0;
    height:0;
    border-style: solid;
    border-color: transparent transparent white transparent;
    border-width: 191.5px 255.5px 191.5px 255.5px;
}

#red-vertical-border {
    top:-100px;
    left:0;
    width:357px; /*511*/
    height:483px; /*383*/
    border-style: solid;
    border-color: transparent #DB3839 transparent #DB3839;
    border-width: 77px;
}

#top-pli {
    top:30px;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
}

#top-pli-trait {
    top:20px;
    left:0;
    width:0;
    height:0;
    border-style: solid;
    border-color: #DB3839 transparent transparent transparent;
    border-width: 191.5px 255.5px 191.5px 255.5px;
}

#top-pli-masque {
    top:-75px;
    left:0;
    width:0;
    height:0;
    border-style: solid;
    border-color: white transparent transparent transparent;
    border-width: 191.5px 255.5px 191.5px 255.5px;
}