Skip to content
Snippets Groups Projects
Commit 215bb6fb authored by Giorgio Utzeri's avatar Giorgio Utzeri
Browse files

css

parent 5d627629
No related branches found
No related tags found
Loading
No preview for this file type
......@@ -21,7 +21,7 @@ body {
}
.sidebar {
width: 25%; /* 25% de l'écran */
width: 22% !important;
background-color: #00072D;
padding: 20px;
display: flex;
......@@ -115,3 +115,15 @@ body {
margin-bottom: 10px;
color : black;
}
.separator {
width: 60%;
height: 1px;
background-color: rgba(255, 255, 255, 0.5);
margin: 20px auto;
}
.list-group a {
color: white !important; /* Forcer la couleur en blanc */
text-decoration: none; /* Enlever le soulignement si nécessaire */
}
......@@ -22,7 +22,7 @@ body {
/* Sidebar */
.sidebar {
width: 25%; /* 25% de l'écran */
width: 20%; /* 25% de l'écran */
background-color: #00072D;
padding: 20px;
display: flex;
......
......@@ -23,8 +23,10 @@
List<Fil> fils = (List<Fil>) request.getAttribute("fils");
if (fils != null && !fils.isEmpty()) {
%>
<div class="sidebar">
<h3>Vos Fils de Discussion</h3>
<div class="sidebar col-3">
<div class="border-top border-3 border-primary my-4"></div>
<h3>Vos fils de discussion</h3>
<div class="separator"></div>
<ul class="list-group">
<% for (Fil fil : fils) { %>
<li>
......@@ -34,6 +36,7 @@
</li>
<% } %>
</ul>
<div class="separator"></div>
<div class="mt-3 text-center">
<a href="creerFil.html" class="btn btn-primary d-flex align-items-center gap-2 px-4 py-2">
......@@ -67,7 +70,7 @@
<% } %>
</div>
<form action="EnvoyerMessage" method="POST" class="w-100 mt-auto">
<form action="EnvoyerMessage" method="GET" class="w-100 mt-auto">
<input type="hidden" name="fid" value="<%= request.getAttribute("filId") %>">
<input type="hidden" name="uid" value="<%= ((Utilisateur) session.getAttribute("utilisateur")).getId() %>">
<div class="input-group p-2 rounded">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment