Files
SIGE-WEB-snapshot/ambiente-de-test/wp-content/uploads/custom-css-js/7971.css

80 lines
1.8 KiB
CSS

<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* Add your CSS code here.
For example:
.example {
color: red;
}
For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp
End of comment */
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
<div class="dropdown">
<button class="dropbtn">Posto/Graduação</button>
<div class="dropdown-content">
<a href="#">Tenente-Brigadeiro do Ar</a>
<a href="#">Major-Brigadeiro do Ar</a>
<a href="#">Brigadeiro</a>
<a href="#">Tenente-Brigadeiro do Ar</a>
<a href="#">Major-Brigadeiro do Ar</a>
<a href="#">Brigadeiro</a>
<a href="#">Coronel</a>
<a href="#">Tenente-Coronel</a>
<a href="#">Major</a>
<a href="#">Capitão</a>
<a href="#"> Tenente</a>
<a href="#"> Tenente</a>
<a href="#">Aspirante</a>
<a href="#">Cadete</a>
<a href="#">Suboficial</a>
<a href="#"> Sargento</a>
<a href="#"> Sargento</a>
<a href="#"> Sargento</a>
<a href="#">Aluno</a>
<a href="#">Cabo</a>
<a href="#">Taifeiro-Mor</a>
<a href="#">Soldado de Classe</a>
<a href="#">Taifeiro de Classe</a>
<a href="#">Soldado de Classe</a>
<a href="#">Taifeiro de Classe</a>
</div>
</div>
</style>
<!-- end Simple Custom CSS and JS -->