husstanden/templates/layout/includes/top_nav.html

51 lines
1.1 KiB
HTML
Raw Normal View History

2019-04-24 15:57:54 +02:00
<style>
.rndblock {
border-radius: 100%;
background: #B507DB;
2019-04-25 17:44:41 +02:00
background-position: center;
2019-04-24 15:57:54 +02:00
width: 40px;
height: 40px;
color: white;
text-align: center;
font-size: 24px;
vertical-align: middle;
display: table-cell;
}
.languk {
2019-04-25 17:44:41 +02:00
background-image: url("{{ url_for('static', filename='const/img/flags/gb.svg') }}");
2019-04-24 15:57:54 +02:00
}
.langno {
2019-04-25 17:44:41 +02:00
background-image: url("{{ url_for('static', filename='const/img/flags/no.svg') }}");
2019-04-24 15:57:54 +02:00
}
2019-04-25 17:52:45 +02:00
.icon-buttons > .col {
padding-right: 6px;
padding-left: 6px;
}
.topnav a {
color: black;
}
2019-04-24 15:57:54 +02:00
</style>
2019-04-25 17:52:45 +02:00
<nav class="navbar topnav" style="margin-bottom: 10px;">
<h3>Dashboard</h3>
<div class="my-2 my-lg-0 d-flex icon-buttons">
2019-04-24 15:57:54 +02:00
<div class="col">
<div class="rndblock languk"></div>
</div>
<div class="col">
<div class="rndblock">
<i class="fas fa-bell"></i>
</div>
</div>
<div class="col">
<div class="rndblock"> <!-- OR INCLUDE BACKGROUND TEXTURE -->
T <!-- FIRST CHAR OF USER -->
</div>
</div>
</div>
</nav>