I made a drop-down menu with bootstrap, but I want it when this menu opens (it opens on page content), the entire page is in an opaque effect. I tried to do something like this by touching the background, but it was not cool in the pictures, I wanted to type a darker layer over the whole page.
<header class="header">
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Menu
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
</ul>
</div>
</div>
<main class="content">
</main>
<footer class="footer"><p>Copyrights</p></footer>