Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +83 -1
templates/index.html
CHANGED
@@ -1,7 +1,89 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="fr">
|
3 |
<!-- [Head section reste identique jusqu'aux styles] -->
|
4 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
/* [Styles précédents restent identiques] */
|
6 |
|
7 |
.button-submit {
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="fr">
|
3 |
<!-- [Head section reste identique jusqu'aux styles] -->
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>Mariam Espagnol - Analyse de Documents</title>
|
8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
9 |
+
<script src="https://unpkg.com/[email protected]/marked.min.js"></script>
|
10 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/prismjs/1.24.1/prism.min.js"></script>
|
11 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prismjs/1.24.1/themes/prism.min.css">
|
12 |
+
<style>
|
13 |
+
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');
|
14 |
+
|
15 |
+
.fade-in {
|
16 |
+
animation: fadeIn 0.5s ease-in;
|
17 |
+
}
|
18 |
+
|
19 |
+
.slide-up {
|
20 |
+
animation: slideUp 0.5s ease-out;
|
21 |
+
}
|
22 |
+
|
23 |
+
@keyframes fadeIn {
|
24 |
+
from { opacity: 0; }
|
25 |
+
to { opacity: 1; }
|
26 |
+
}
|
27 |
+
|
28 |
+
@keyframes slideUp {
|
29 |
+
from { transform: translateY(20px); opacity: 0; }
|
30 |
+
to { transform: translateY(0); opacity: 1; }
|
31 |
+
}
|
32 |
+
|
33 |
+
.gradient-text {
|
34 |
+
background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
|
35 |
+
-webkit-background-clip: text;
|
36 |
+
background-clip: text;
|
37 |
+
color: transparent;
|
38 |
+
}
|
39 |
+
|
40 |
+
.upload-zone {
|
41 |
+
background: linear-gradient(145deg, #ffffff, #f3f4f6);
|
42 |
+
box-shadow: 20px 20px 60px #d1d1d1,
|
43 |
+
-20px -20px 60px #ffffff;
|
44 |
+
}
|
45 |
+
|
46 |
+
.upload-zone:hover {
|
47 |
+
transform: scale(1.01);
|
48 |
+
transition: all 0.3s ease;
|
49 |
+
}
|
50 |
+
|
51 |
+
.waves {
|
52 |
+
position: absolute;
|
53 |
+
bottom: 0;
|
54 |
+
left: 0;
|
55 |
+
width: 100%;
|
56 |
+
overflow: hidden;
|
57 |
+
line-height: 0;
|
58 |
+
transform: rotate(180deg);
|
59 |
+
}
|
60 |
+
|
61 |
+
.waves svg {
|
62 |
+
position: relative;
|
63 |
+
display: block;
|
64 |
+
width: calc(100% + 1.3px);
|
65 |
+
height: 150px;
|
66 |
+
}
|
67 |
+
|
68 |
+
.prose {
|
69 |
+
max-width: none;
|
70 |
+
color: #374151;
|
71 |
+
}
|
72 |
+
|
73 |
+
.prose h1, .prose h2, .prose h3 {
|
74 |
+
color: #1F2937;
|
75 |
+
font-family: 'Playfair Display', serif;
|
76 |
+
margin-top: 2em;
|
77 |
+
margin-bottom: 1em;
|
78 |
+
}
|
79 |
+
|
80 |
+
.prose p {
|
81 |
+
margin-bottom: 1.5em;
|
82 |
+
line-height: 1.8;
|
83 |
+
}
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
/* [Styles précédents restent identiques] */
|
88 |
|
89 |
.button-submit {
|