You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
475 B
27 lines
475 B
#menu{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 7vh;
|
|
background-color: darkslategrey;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
z-index: 10;
|
|
}
|
|
|
|
.liens_dans_le_menu{
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
.liens_dans_le_menu:hover{
|
|
color: black;
|
|
background-color: grey;
|
|
} |