TEC : Animations menu

This commit is contained in:
Anthony Mahe
2025-05-19 16:55:24 +02:00
parent 4790a20238
commit bb2f00a9a8
3 changed files with 156 additions and 135 deletions

View File

@@ -6,12 +6,11 @@
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
row-gap: 10px; row-gap: 10px;
column-gap: 2em; column-gap: 0.7rem;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background-color: #CC4331; background-color: #CC4331;
margin: auto; padding: 1rem 1rem;
padding: 0.7rem 1rem;
color: #F9E7DB; color: #F9E7DB;
z-index: 100; z-index: 100;
font-size: 11px; font-size: 11px;

View File

@@ -25,6 +25,8 @@
</head> </head>
<body> <body>
<header class="header">
<div class="contact"> <div class="contact">
<div>Tel : 06.......... </div> <div>Tel : 06.......... </div>
<div> <div>
@@ -36,7 +38,6 @@
Email : c.pasteuravocate@gmail.com Email : c.pasteuravocate@gmail.com
</div> </div>
</div> </div>
<header class="header">
<a href="index.html" class="logo"> <a href="index.html" class="logo">
<img src="assets/img/logo.png" alt="Logo - Charline Pasteur Avocate"> <img src="assets/img/logo.png" alt="Logo - Charline Pasteur Avocate">
Charline Pasteur, Avocate Charline Pasteur, Avocate

View File

@@ -1,9 +1,7 @@
/* Style pour le header et la navigation */ /* Style pour le header */
.header { .header {
background-color: #F9E7DB; background-color: #F9E7DB;
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
position: fixed; position: fixed;
top:40px;
width: 100%; width: 100%;
z-index: 3; z-index: 3;
align-items: center; align-items: center;
@@ -22,6 +20,29 @@
padding: 0.5rem; padding: 0.5rem;
border-right: 1px solid #F9E7DB; border-right: 1px solid #F9E7DB;
text-decoration: none; text-decoration: none;
}
.header li a {
position: relative;
text-decoration: none;
color: inherit;
padding-bottom: 4px; /* pour éviter que la ligne touche le texte */
}
.header li a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0%;
height: 2px;
background-color: #CC4331;
transition: width 0.3s ease;
}
.header li a:hover::after {
width: 100%;
} }
.header li a:hover, .header li a:hover,
@@ -118,7 +139,7 @@
top: 0; top: 0;
} }
/* Styles pour les écrans plus petits (téléphones) */ /* Styles pour les écrans plus grand (hors téléphones) */
@media (min-width: 48em) { @media (min-width: 48em) {
.header { .header {