Styled Select
by technotarek
HTML
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<select class="input-lg">
<option>Choose Option</option>
<option>Option One</option>
<option>Option Two</option>
</select>
CSS
body {
background:green;
}
select {
background-color:#45658a;
background-color:rgba(0,0,0,0.5);
color:#fff;
}