I created a select/option box and my styling is not taking place. I have uploaded the same files multiple times, so it is not that. I created a fiddle to see if it would work and it does. However, when I add more of my css code it goes back to an un-styled version. I do not see what I am doing wrong with the code over-top of this for it to break. Does anyone see something I am overlooking?
https://jsfiddle.net/ybd0bLr1/1/
.selectbar
is the class in which my select bar styling comes from.
.inputbarphone[type=tel] {
display: block;
width: 400px;
margin: 10px auto;
font-size: 18px;
padding: 10px;
-webkit-transition: all 0.40s ease-in-out;
-moz-transition: all 0.40s ease-in-out;
-ms-transition: all 0.40s ease-in-out;
-o-transition: all 0.40s ease-in-out;
outline: none;
border: 1px solid #DDDDDD;
}
.inputbarphone:hover {
-moz-box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
box-shadow: 0 0 10px #ccc;
}
.inputbarphone[type=tel]:focus {
border: 1px solid #3385FF;
-moz-box-shadow: 0 0 1px 1px rgba(51,133,255, 1);
-webkit-box-shadow: 0 0 1px 1px rgba((51,133,255, 1);
box-shadow: 0 0 1px 1px rgba(51,133,255, 1);
}
.selectbar {
display: block;
width: 400px;
margin: 10px auto;
font-size: 18px;
padding: 10px;
-webkit-transition: all 0.40s ease-in-out;
-moz-transition: all 0.40s ease-in-out;
-ms-transition: all 0.40s ease-in-out;
-o-transition: all 0.40s ease-in-out;
outline: none;
border: 1px solid #DDDDDD;
}