update css
This commit is contained in:
parent
2818d3675c
commit
5fab510d67
BIN
src/balade.jpg
Normal file
BIN
src/balade.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 111 KiB |
@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Les Enfants de Gaia</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@ -20,28 +20,45 @@
|
||||
</header>
|
||||
|
||||
<section id="accueil">
|
||||
<img src="./balade.jpg" />
|
||||
<main>
|
||||
<h2>Bienvenue dans l'univers mystique</h2>
|
||||
<p>L'association <b>Les Enfants de Gaia</b> vous guide à travers les énergies du cosmos. Explorez notre site pour découvrir nos événements, ateliers et séances de méditation.</p>
|
||||
</main>
|
||||
</section>
|
||||
|
||||
<section id="evenements">
|
||||
<img src="jardin.jpg" />
|
||||
<main>
|
||||
<h2>Nos Événements</h2>
|
||||
<ul>
|
||||
<li>Atelier de méditation stellaire</li>
|
||||
<li>Conférence sur les énergies lunaires</li>
|
||||
<li>Retraite spirituelle en pleine nature</li>
|
||||
</ul>
|
||||
</main>
|
||||
</section>
|
||||
|
||||
<section id="equipe">
|
||||
<img src="laredoute.jpg" />
|
||||
<main>
|
||||
<h2>Notre Équipe</h2>
|
||||
<p>Nous sommes une équipe passionnée par l'astrologie, la méditation et le bien-être. Rencontrez nos membres et découvrez leurs expertises.</p>
|
||||
</main>
|
||||
</section>
|
||||
|
||||
<section id="contact">
|
||||
<img src="lettre.jpg" />
|
||||
<main>
|
||||
<h2>Contactez-nous</h2>
|
||||
<p>Pour toute question ou demande, n'hésitez pas à nous contacter à l’adresse enfants-de-gaia@jean-cloud.net</p>
|
||||
</main>
|
||||
</section>
|
||||
<footer>
|
||||
<p>
|
||||
Text généré par chatGPT, images pixabay.com, hébergement web jean-cloud.net, css domaine publique.
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
BIN
src/jardin.jpg
Normal file
BIN
src/jardin.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 124 KiB |
BIN
src/laredoute.jpg
Normal file
BIN
src/laredoute.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 130 KiB |
BIN
src/lettre.jpg
Normal file
BIN
src/lettre.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 109 KiB |
93
src/style.css
Normal file
93
src/style.css
Normal file
@ -0,0 +1,93 @@
|
||||
/* Réinitialisation des marges et des paddings */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
height:95%;
|
||||
}
|
||||
/* Styles pour le corps de la page */
|
||||
body {
|
||||
font-size:1.4em;
|
||||
font-family: 'Helvetica Neue', sans-serif;
|
||||
background-color: #f9f9f9;
|
||||
color: #333;
|
||||
height:95%;
|
||||
}
|
||||
|
||||
/* Styles pour l'en-tête */
|
||||
header {
|
||||
background-color: #26a18a8c;
|
||||
color: #fff;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Styles pour les titres de section */
|
||||
h1, h2 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* Styles pour les liens de navigation */
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
nav ul li {
|
||||
display: inline-block;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
nav ul li a {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Styles pour les sections */
|
||||
section {
|
||||
background-color: #fff;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
position:relative;
|
||||
}
|
||||
|
||||
main {
|
||||
color :#fff;
|
||||
background-color: #0005;
|
||||
padding: 20px;
|
||||
position: absolute;
|
||||
top:0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
/* Styles spécifiques pour chaque section */
|
||||
section img {
|
||||
width:100%;
|
||||
|
||||
}
|
||||
|
||||
#evenements main {
|
||||
bottom:0 !important;
|
||||
background-color: #0008;
|
||||
top:auto;
|
||||
}
|
||||
|
||||
#equipe main{
|
||||
top:auto;
|
||||
bottom:0 !important;
|
||||
background-color: #0008;
|
||||
}
|
||||
|
||||
#contact main {
|
||||
top:auto;
|
||||
bottom:0 !important;
|
||||
background-color: #0008;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 10px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user