briefcharte/css/style.css

65 lines
966 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: */
2021-09-10 10:20:19 +00:00
background-color: white;
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;
2021-09-10 10:20:19 +00:00
height: 50px;
2021-09-10 08:15:03 +00:00
z-index: 1;
}
.intro{
margin-top: 100px;
2021-09-10 10:20:19 +00:00
2021-09-10 07:22:10 +00:00
}
2021-09-10 10:20:19 +00:00
button{
background: #e40034;
float: right;
}
2021-09-10 07:22:10 +00:00
body{
2021-09-10 10:20:19 +00:00
background-color:#f3f6f8;
2021-09-10 07:22:10 +00:00
padding: 50px 50px 50px 50px;
max-width: 800px;
2021-09-10 10:20:19 +00:00
margin: 20px 50px 100px 100px;
2021-09-10 07:22:10 +00:00
}
.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;
2021-09-10 10:20:19 +00:00
border-radius: 5px;
box-shadow: 10px 10px 5px #ebeeef;
2021-09-10 07:22:10 +00:00
}
2021-09-10 10:35:39 +00:00
ol{list-style-image: url("/images/liste.png");
2021-09-10 08:15:03 +00:00
}