Nothing amazing by any stretch… but I built this using CSS3 in about 30 mins. It uses Blueprint CSS mainly for the width control… but you can take that out…
.calendar-sheet {
font-family: Arial, sans-serif;
font-size:1.2em;
}
.calendar-top {
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
background-color: #8B0E0E;
color: #fff;
height:30px;
line-height:30px;
font-size:1em;
text-align:center;
font-family:inherit;
background: #f44949; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0NDk0OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjU2JSIgc3RvcC1jb2xvcj0iIzhmMDIyMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZDAwMTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, #f44949 0%, #8f0222 56%, #6d0019 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f44949), color-stop(56%,#8f0222), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f44949 0%,#8f0222 56%,#6d0019 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f44949 0%,#8f0222 56%,#6d0019 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #f44949 0%,#8f0222 56%,#6d0019 100%); /* IE10+ */
background: linear-gradient(top, #f44949 0%,#8f0222 56%,#6d0019 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f44949', endColorstr='#6d0019',GradientType=0 ); /* IE6-8 */
}
.calendar-body {
text-align:center;
-webkit-border-bottom-right-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
-moz-border-radius-bottomright: 8px;
-moz-border-radius-bottomleft: 8px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
border-left: 1px #f7f7f7 solid;
border-right: 1px #f7f7f7 solid;
border-bottom: 1px #f7f7f7 solid;
font-size: 1.6em;
font-family:inherit;
-moz-box-shadow: -10px 0px 5px #888;
-webkit-box-shadow: -10px 0px 5px #888;
box-shadow: -10px 0px 5px #888;
}
combined with this HTML
<div id="container"> <div> <div> <span>April</span> </div> <div> 26th </div> </div> </div>
gives you
Big thanks to the CSS Gradient Generator and Border Radius for saving my typing


