My goal is to design something that resembles the following:
The challenge lies in my preference to contain it within a single div, considering the drop-down features an inner shadow and a drop shadow.
Thank you in advance, and please feel free to ask for more details if needed.
This is my current progress:
CSS
.rectangle {
background: #1f8dda;
background-image: -moz-linear-gradient(270deg, #1f8dda 0%, #114dbc 100%);
background-image: -webkit-linear-gradient(270deg, #1f8dda 0%, #114dbc 100%);
background-image: -o-linear-gradient(270deg, #1f8dda 0%, #114dbc 100%);
background-image: linear-gradient(180deg, #1f8dda 0%, #114dbc 100%);
-moz-box-shadow: 0px 0px 2px 0px #000000;
-webkit-box-shadow: 0px 0px 2px 0px #000000;
-o-box-shadow: 0px 0px 2px 0px #000000;
box-shadow: 0px 0px 2px 0px #000000;
border-radius: 0px;
margin: 0px;
width: 145px;
height: 138px;
}
I have also created a fiddle demonstrating this: http://jsfiddle.net/yHy5n/