Recently, I stumbled upon a PSD design that really caught my eye.
https://i.sstatic.net/R46Ko.jpg
It inspired me to create a website similar to . One feature I particularly liked was how a circle appeared when hovering over a link. Plus, I plan on using Bootstrap 4.5 for this project.
Here's the CSS snippet I'm considering:
ul.navbar-nav > li > a {
padding: 60px 0 16px;
text-align: center;
position: relative;
min-width: 110px;
}
/* Additional CSS code here */
I also found a simple HTML example that aligns perfectly with what I have in mind:
<li class="nav-item active">
<a class="nav-link" href="#">
<i class="fas fa-th-large fa-2x"></i>
<span>Home</span>
</a>
</li>
For further inspiration, I checked out this demo as well: