Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
anaelle1531 authored Feb 1, 2025
1 parent 150dda1 commit 82e832d
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,30 @@ a {
display: flex;
align-items: center; /* met les écritures à la suite et pas en colonne*/
list-style-type: none; /* enlève les points de la liste*/
list-style: none;
}

.navbar ul li {
margin: 0 15px;
}

.navbar ul li a {
padding: 12px; /*espace entre écritures*/
margin: 0 6px;
padding: 12px; /*espace entre écritures*/
margin: 0 6px;
color: white;
font-weight: bold;
transition: all 0.3s ease;
border-radius: 5px;
}

.navbar ul li a:hover{
/* quand on met souris sur différents liens*/
color: white;
/*color: white;*/
background-color : rgb(255,153,102);
border-radius: 4px;
background-color: white;
color: rgb(144, 54, 54);
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.actu:hover{
Expand Down

0 comments on commit 82e832d

Please sign in to comment.