Skip to content

Commit e8ee3ee

Browse files
author
baptiste.bernard
committed
Update home page with schema and add css
1 parent b23cd6a commit e8ee3ee

File tree

2 files changed

+58
-8
lines changed

2 files changed

+58
-8
lines changed

assets/css/custom.scss

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,54 @@ div.quoteAttribution {
291291
line-height: 1.3;
292292
text-align: center;
293293
width: 0;
294-
}
294+
}
295+
296+
297+
//index
298+
299+
h1 {
300+
text-align: center;
301+
font-size: 2rem;
302+
margin-top: 2rem;
303+
margin-bottom: 0.5rem;
304+
}
305+
306+
p {
307+
text-align: center;
308+
font-size: 1.2rem;
309+
margin-bottom: 2rem;
310+
}
311+
312+
.collaborative-project {
313+
text-align: center;
314+
background-color: #F0F0F0;
315+
padding: 2rem;
316+
border-radius: 10px;
317+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
318+
margin-top: 2rem;
319+
}
320+
321+
.collaborative-project p {
322+
font-size: 1.2rem;
323+
}
324+
325+
.collaborative-project ul {
326+
list-style-type: none;
327+
padding: 0;
328+
}
329+
330+
.collaborative-project ul li {
331+
margin-bottom: 0.5rem;
332+
}
333+
334+
.image-section {
335+
text-align: center;
336+
margin-top: 2rem;
337+
}
338+
339+
.image-section img {
340+
max-width: 100%;
341+
height: auto;
342+
border-radius: 10px;
343+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
344+
}

index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
permalink: /
77
---
88

9-
<h1 style="text-align: center; font-size: 2rem; margin-top: 2rem; margin-bottom: 0.5rem;">Bienvenue sur le projet GAIA</h1>
10-
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 2rem;">(Generative Artificial Intelligence for Agriculture)</p>
9+
<h1>Bienvenue sur le projet GAIA</h1>
10+
<p>(Generative Artificial Intelligence for Agriculture)</p>
1111

12-
<section class="container-lg p-responsive py-5 py-md-6 my-lg-6" style="text-align: center; background-color: #F0F0F0; padding: 2rem; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);">
13-
<p style="font-size: 1.2rem;">GAIA est un projet collaboratif ouvert entre <a href="https://www.lafermedigitale.fr/" target="_blank" style="color: #007bff; text-decoration: none;">LFD</a> et <a href="https://www.osfarm.org/" target="_blank" style="color: #007bff; text-decoration: none;">OSFarm</a> permettant de :</p>
14-
<ul style="list-style-type: none; padding: 0;">
12+
<section class="collaborative-project">
13+
<p>GAIA est un projet collaboratif ouvert entre <a href="https://www.lafermedigitale.fr/" target="_blank">LFD</a> et <a href="https://www.osfarm.org/" target="_blank">OSFarm</a> permettant de :</p>
14+
<ul>
1515
<li><i class="fas fa-check-circle"></i>Démocratiser et acculturer le monde agricole aux nouvelles technologies.</li>
1616
<li><i class="fas fa-check-circle"></i>Développer plus rapidement à partir de briques logicielles ouvertes et données durables.</li>
1717
<li><i class="fas fa-check-circle"></i>Rendre accessible cette technologie au monde agricole permettant d'amener de nouvelles solutions aux problématiques agricoles.</li>
1818
</ul>
1919
</section>
2020

21-
<section style="text-align: center; margin-top: 2rem;">
22-
<img src="assets/img/lafermedigital.png" alt="" style="max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);">
21+
<section class="image-section">
22+
<img src="assets/img/lafermedigital.png" alt="">
2323
</section>

0 commit comments

Comments
 (0)