-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (78 loc) · 4.14 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
<!doctype html>
<html>
<head>
<title>Versionning - Projet BordeauxWC</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<script src="./assets/js/fetchOpenData.js"></script>
<script src="./assets/js/libs/scrollifyReveal.js"></script>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
mainColor: '#181823', // Dark blue
secondaryColor: '#537FE7', // Light blue
thirdColor: '#E9F8F9' // White
}
}
}
}
</script>
</head>
<body class="h-screen w-screen bg-mainColor">
<div id="mainContainer" class="flex h-full w-full flex-col">
<div class="w-full bg-[#181823] h-fit shadow-lg px-8 py-8 flex justify-center">
<nav>
<ul class="flex space-x-6">
<li>
<a href="#" class="text-xl px-5 py-3 bg-white text-mainColor font-semibold rounded-lg shadow-md transition duration-300 hover:bg-white hover:text-black">Accueil</a> <!-- Texte plus grand et padding augmenté -->
</li>
<li>
<a href="./assets/html/informations.html" class="text-xl px-5 py-3 bg-mainColor text-white font-semibold rounded-lg shadow-md transition duration-300 hover:bg-white hover:text-black">Informations</a>
</li>
<li>
<a href="./assets/html/about.html" class="text-xl px-5 py-3 bg-mainColor text-white font-semibold rounded-lg shadow-md transition duration-300 hover:bg-white hover:text-black">Bordeaux</a>
</li>
</ul>
</nav>
</div>
<div class="flex h-fit w-full justify-center pt-10 px-20 flex-col">
<h1 class="title text-white text-9xl font-black uppercase text-center pb-8">Bordeaux WC</h1>
<h2 class="subtitle text-white text-5xl font-bold uppercase text-center">X</h1>
<div class="githubButton flex w-full h-fit justify-center pb-6 pt-10">
<a href="https://github.com/romainfb/bordeauxwc" class="text-mainColor bg-white px-6 py-2 rounded-xl font-bold text-2xl my-auto hover:scale-105 duration-300"><i class='bx bxl-github font-4xl'></i> Github</a>
</div>
</div>
<div class="numberDiv flex h-fit px-8 w-full flex-col">
<div class="flex flex-col h-fit w-full items-center pt-14 pb-6">
<span class="text-white text-8xl font-black uppercase text-center" id="totalData">0</span>
<span class="text-transparent text-4xl font-black uppercase text-center" style="-webkit-text-stroke-width: 2px; -webkit-text-stroke-color: white;">Au total</span>
</div>
<div class="flex flex-row h-fit w-full px-48">
<div class="flex flex-col w-full h-fit items-center pt-14">
<span class="text-white text-6xl font-black uppercase text-center" id="urinalData">0</span>
<span class="text-transparent text-2xl font-black uppercase text-center" style="-webkit-text-stroke-width: 1px; -webkit-text-stroke-color: white;">Urinoirs</span>
</div>
<div class="flex flex-col w-full items-center pt-14">
<span class="text-white text-6xl font-black uppercase text-center" id="wcAutoData">0</span>
<span class="text-transparent text-2xl font-black uppercase text-center" style="-webkit-text-stroke-width: 1px; -webkit-text-stroke-color: white;">WC automatiques</span>
</div>
<div class="flex flex-col w-full items-center pt-14">
<span class="text-white text-6xl font-black uppercase text-center" id="cottageData">0</span>
<span class="text-transparent text-2xl font-black uppercase text-center" style="-webkit-text-stroke-width: 1px; -webkit-text-stroke-color: white;">Châlet de nécessité</span>
</div>
</div>
</div>
</div>
</div>
<script>
scrollifyReveal.reveal('.title', {delay: 200});
scrollifyReveal.reveal('.subtitle', {delay: 300});
scrollifyReveal.reveal('.githubButton', {delay: 350});
scrollifyReveal.reveal('.numberDiv', {delay: 150});
</script>
</body>
</html>