Update style.css

This commit is contained in:
zylfu 2021-09-10 12:20:19 +02:00 committed by GitHub
parent 06ab112d33
commit 883537f716
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,12 +3,14 @@
/*Barre de menu fixe en haut et le reste de la page déroulant: */ /*Barre de menu fixe en haut et le reste de la page déroulant: */
background-color: blue;
background-color: white;
position: fixed; /* Set the navbar to fixed position */ position: fixed; /* Set the navbar to fixed position */
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
height: 120px; height: 50px;
z-index: 1; z-index: 1;
} }
@ -16,11 +18,21 @@
.intro{ .intro{
margin-top: 100px; margin-top: 100px;
} }
button{
background: #e40034;
float: right;
}
body{ body{
background-color:#E9F9F9; background-color:#f3f6f8;
padding: 50px 50px 50px 50px; padding: 50px 50px 50px 50px;
max-width: 800px; max-width: 800px;
margin: 20px 50px 100px 100px;
} }
@ -44,9 +56,10 @@ background-color: white;
margin-bottom: 50px; margin-bottom: 50px;
box-shadow: 1px 1px 1px 1px grey; box-shadow: 1px 1px 1px 1px grey;
padding: 20px 40px 20px 40px; padding: 20px 40px 20px 40px;
border-radius: 20px; border-radius: 5px;
box-shadow: 10px 10px 5px #ebeeef;
} }
ol{ ol{
list-style-image:image("bullet.png"); list-style-image: url("../images/liste.png");
} }