change navbar style

This commit is contained in:
koksnuss 2020-04-22 18:40:14 +02:00
parent d7a9022b22
commit 5df1bd469d
2 changed files with 9 additions and 2 deletions

View File

@ -18,7 +18,15 @@
*/
a, a:hover, a:active, a:visited {
text-decoration: none;
color: black !important;
cursor: default;
}
li {
padding: 0px 5px 5px 0px;
}
table {
margin-top: 30px;
@ -31,7 +39,6 @@ table td { padding: 5px; }
table > thead > tr > td {
border-bottom: 2px solid black;
background-color: #9fc5e8;
font-weight: bold;
}
table > tbody > tr > td {

View File

@ -1,7 +1,7 @@
<ul class="nav nav-pills">
{% for country in countrys %}
<li class="nav-item">
<a class="nav-link" href="#{{ country.name_iso }}">{{ country.name }}</a>
<a class="nav-link btn btn-outline-primary" href="#{{ country.name_iso }}">{{ country.name }}</a>
</li>
{% endfor %}
</ul>