I have a question and I need help...
There is something that I have to make as a Homework. I must make a simple HTML/CSS/Bootstrap Hotel room reservation page. There is a form that I don't really know how to make it. One of the forms is a select option dropdown button. They want from me to make a bigger than normal arrow and I don't know how to make this arrow bigger.
Posting my code here:
HTML
<label class="control-label">Nationality</label><br>
<select class="options izbor" name="country">
<option value="България">Bulgaria</option>
<option value="Румъния">Germany</option>
<option value="Гърция">Russia</option>
<option value="Сърбия">England</option>
</select>
CSS
.izbor {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #b7b7b7;
border-radius: 0px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}