You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.1 KiB
77 lines
1.1 KiB
body {
|
|
background-color: white;
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
header {
|
|
background-color: green;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.header-content {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 18px;
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.icon {
|
|
text-align: center;
|
|
}
|
|
|
|
.icon img {
|
|
width: 200px; /* Ajustez la taille des images selon vos besoins */
|
|
height: 200px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.buttons {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
button, input[type="submit"] {
|
|
background-color: green;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
margin: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: darkgreen;
|
|
}
|
|
input {
|
|
visibility: visible;
|
|
}
|
|
|
|
.chargement {
|
|
display:none;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 37.5%;
|
|
text-align: center;
|
|
border-radius: 10px;
|
|
background-color: lightgrey;
|
|
width: 25vw;
|
|
padding: 2vw;
|
|
}
|