briefcharte/css/style.css

53 lines
798 B
CSS
Raw Normal View History

2021-09-10 07:22:10 +00:00
.header{
2021-09-10 08:15:03 +00:00
/*Barre de menu fixe en haut et le reste de la page déroulant: */
background-color: blue;
2021-09-10 07:22:10 +00:00
position: fixed; /* Set the navbar to fixed position */
2021-09-10 08:15:03 +00:00
top: 0;
left: 0;
right: 0;
height: 120px;
z-index: 1;
}
.intro{
margin-top: 100px;
2021-09-10 07:22:10 +00:00
}
body{
background-color:#E9F9F9;
padding: 50px 50px 50px 50px;
max-width: 800px;
}
.blocs{
margin: auto;
}
h4{
text-shadow: 2px 2px 4px #000000;
}
h5{
font-family: cursive;
text-shadow: black 40px;
}
.bloc{
background-color: white;
margin-bottom: 50px;
box-shadow: 1px 1px 1px 1px grey;
padding: 20px 40px 20px 40px;
border-radius: 20px;
}
ol{
list-style-image:image("bullet.png");
2021-09-10 08:15:03 +00:00
}