Update style.css

This commit is contained in:
zylfu 2021-09-10 10:15:03 +02:00 committed by GitHub
parent 4dce950954
commit da40a15791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,22 @@
.header{ .header{
/*Barre de menu fixe en haut et le reste de la page déroulant: */
overflow: hidden;
background-color:#CAF5F5; /*Barre de menu fixe en haut et le reste de la page déroulant: */
background-color: blue;
position: fixed; /* Set the navbar to fixed position */ position: fixed; /* Set the navbar to fixed position */
top: 0; /* Position the navbar at the top of the page */ top: 0;
width: 100%; /* Full width */ left: 0;
right: 0;
height: 120px;
z-index: 1;
}
.intro{
margin-top: 100px;
} }
}
body{ body{
background-color:#E9F9F9; background-color:#E9F9F9;
padding: 50px 50px 50px 50px; padding: 50px 50px 50px 50px;
@ -41,4 +49,4 @@ background-color: white;
ol{ ol{
list-style-image:image("bullet.png"); list-style-image:image("bullet.png");
} }