Merge perso and pro on same Caddy

This commit is contained in:
Lucas
2025-10-17 09:55:56 +00:00
commit 871baf8f92
12 changed files with 366 additions and 0 deletions

72
html/style.css Normal file
View File

@@ -0,0 +1,72 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #000;
background-color: #fff;
font-size: 18px; /* Augmentation de la taille de la police */
line-height: 1.5;
}
header {
background-color: #000;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
nav li {
padding: 10px;
margin: 0 10px;
}
nav a {
color: #000;
text-decoration: none;
font-size: 20px; /* Augmentation de la taille de la police */
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
section {
margin-bottom: 40px;
}
h2 {
color: #000;
font-size: 36px; /* Augmentation de la taille de la police */
font-weight: bold;
margin-bottom: 20px;
}
a {
background-color: #FED330;
color: #000;
display: inline-block;
padding: 10px;
text-decoration: none;
}
a:hover {
background-color: #FFC300;
}
footer {
background-color: #eee;
color: #000;
padding: 20px;
text-align: center;
}