46 lines
1.1 KiB
CSS
46 lines
1.1 KiB
CSS
|
@import url(https://db.onlinewebfonts.com/c/d7e8a95865396cddca89b00080d2cba6?family=SoDo+Sans+SemiBold);
|
||
|
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,700&family=Montserrat&family=Open+Sans:wght@300&family=Oswald&family=Playfair+Display:wght@500&display=swap');
|
||
|
|
||
|
div.all {
|
||
|
margin : 0 auto;
|
||
|
max-width: 1000px;
|
||
|
text-align: center;
|
||
|
width:100%;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
color: white;
|
||
|
font-family: "SoDo Sans SemiBold";
|
||
|
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
padding-top: 20px;
|
||
|
padding-bottom: 20px;
|
||
|
background-color: darkgreen;
|
||
|
}
|
||
|
|
||
|
|
||
|
li {
|
||
|
border-radius: 25px;
|
||
|
background-color: gray;
|
||
|
flex-wrap: nowrap;
|
||
|
display: inline-flex;
|
||
|
justify-content: space-between;
|
||
|
font-size:smaller;
|
||
|
margin: 0 5px; /* Espacement entre les boutons */
|
||
|
padding: 10px;
|
||
|
background-color: darkslategrey;
|
||
|
border: none;
|
||
|
color: white;
|
||
|
font-size: 16px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
justify-content: space-between;
|
||
|
list-style: none;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
width: 100%;
|
||
|
padding: 10px 0;
|
||
|
}
|