-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (131 loc) · 4.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IA Biblique</title>
<style>
/* Style de base pour la page */
body {
font-family: 'Arial', sans-serif;
background-color: #e0f7fa; /* Bleu ciel */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
/* Container principal, élargi */
.container {
text-align: center;
background-color: rgba(12, 113, 228, 0.534);
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 30px;
width: 70%; /* Augmentation de la largeur */
max-width: 1200px;
}
/* Logo */
.logo img {
width: 150px;
margin-bottom: 20px;
}
/* Titre principal */
h1 {
color: #f5faf9; /* Bleu foncé pour le titre */
font-size: 3em;
margin-bottom: 10px;
animation: fadeIn 2s ease;
}
/* Sous-titre avec animation */
h2 {
color: #fcfafa;
margin-top: 0;
font-size: 1.5em;
margin-bottom: 30px;
animation: fadeIn 2s ease;
}
/* Barre de saisie de questions */
.input-bar {
display: flex; /* Utilisation de flexbox pour aligner sur la même ligne */
justify-content: center; /* Centrer la barre et le bouton */
align-items: center;
margin-bottom: 30px;
}
.input-bar input[type="text"] {
width: 70%; /* Largeur ajustée */
padding: 12px;
font-size: 1.2em;
border-radius: 5px;
border: 1px solid #000000;
}
.input-bar button {
padding: 12px 20px;
font-size: 1.2em;
border: none;
background-color: #3b3c3dc9;
color: white;
border-radius: 5px;
cursor: pointer;
margin-left: 10px;
}
.input-bar button:hover {
background-color: #606263f3;
}
/* Animation fade-in pour le texte */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Style des boutons d'exemples de questions */
.example-btn {
display: inline-block;
background-color: #8e9092c9;
color: white;
border: none;
padding: 15px 30px;
margin: 10px;
font-size: 1.2em;
border-radius: 8px;
cursor: pointer;
transition: transform 0.3s ease;
}
/* Animation au survol des boutons */
.example-btn:hover {
transform: translateY(-3px);
background-color: #606263f3; /* Couleur plus foncée au survol */
}
/* Section des exemples */
.examples {
margin-top: 10px;
animation: fadeIn 3s ease;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo -->
<div class="logo">
<img src="bible.webp" alt="Logo IA Biblique">
</div>
<!-- Titre principal -->
<h1>IA BIBLIQUE</h1>
<h2>Que voulez vous savoir sur la Bible ?</h2>
<!-- Barre de saisie de questions avec bouton sur la même ligne -->
<div class="input-bar">
<input type="text" placeholder="Entrez votre question ici...">
<button>Envoyer</button>
</div>
<!-- Exemples de questions -->
<div class="examples">
<button class="example-btn">Quel est le plus grand commandement ?</button>
<button class="example-btn">Que dit la Bible sur l'amour ?</button>
<button class="example-btn">Qu'est-ce que la foi selon la Bible ?</button>
</div>
</div>
</body>
</html>