Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
test border nav
Browse files Browse the repository at this point in the history
  • Loading branch information
elouanjef committed Jan 26, 2024
1 parent cb19913 commit 20b5396
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</head>

<body>
<nav class="navbar navbar-dark bg-dark">
<nav class="navbar navbar-dark bg-dark border-bottom-nav">
<a class="navbar-brand" href="/">
<img src="{{ url_for('static', filename='icons/vdi.png' ) }}" alt="Info" style="width: 50px; height: 58px; cursor: pointer;">
</a>
Expand Down Expand Up @@ -283,6 +283,9 @@ <h5 class="modal-title" id="alertModalLabel"></h5>
</script>

<style>
.border-bottom-nav {
border-bottom: 2px solid #FFF; /* Remplacez "yourColor" par la couleur souhaitée en format hexadécimal, RVB, ou autre */
}
.dropdown-menu-right {
right: 0;
left: auto;
Expand All @@ -308,7 +311,7 @@ <h5 class="modal-title" id="alertModalLabel"></h5>
}

body {
background-color: #869CA2;
background-color: #343A40;
color: white;
}

Expand Down
9 changes: 6 additions & 3 deletions templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<style>
.border-bottom-nav {
border-bottom: 2px solid #FFF; /* Remplacez "yourColor" par la couleur souhaitée en format hexadécimal, RVB, ou autre */
}

.cards {
display: flex;
flex-wrap: wrap;
Expand All @@ -23,7 +27,7 @@
}

body {
background-color: #869CA2;
background-color: #343A40;
color: white;
}

Expand Down Expand Up @@ -74,12 +78,11 @@
a:hover {
cursor:hand;
}

</style>
</head>

<body>
<nav class="navbar navbar-dark bg-dark">
<nav class="navbar navbar-dark bg-dark border-bottom-nav">
<a class="navbar-brand" href="/">
<img src="{{ url_for('static', filename='icons/vdi.png' ) }}" alt="Info" style="width: 50px; height: 58px; cursor: pointer;">
</a>
Expand Down

0 comments on commit 20b5396

Please sign in to comment.