Skip to content

Instantly share code, notes, and snippets.

@cadoo
Created July 19, 2013 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cadoo/6037951 to your computer and use it in GitHub Desktop.
Save cadoo/6037951 to your computer and use it in GitHub Desktop.
Styled select
// Styled dropdowns
.styled-select {
width: 100%;
height: em(44);
overflow: hidden;
background: #fff image-url('bg-styled-select-arrow.png') no-repeat 96% 50%;
border: 1px solid #d3d3d3;
select {
background: transparent;
width: 100%;
height: em(44);
padding: em(10);
font-size: em(16);
line-height: 1.5;
border: 0;
border-radius: 0;
-webkit-appearance: none;
&:focus {
outline: none;
border-color: #bbb;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment