mise à jour

This commit is contained in:
Jimmy Labbé
2026-06-11 20:33:59 +02:00
parent 30b5745fdc
commit 105f46d7f4
+220 -119
View File
@@ -5,50 +5,59 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet"> <meta name="robots" content="noindex, nofollow, noarchive, nosnippet">
<meta name="googlebot" content="noindex, nofollow"> <meta name="googlebot" content="noindex, nofollow">
<title>GSK | Accueil</title> <title>GSK | Accueil</title>
<link rel="icon" href="https://gsk.labbej27.fr/logo.jpeg" type="image/jpeg"> <link rel="icon" href="https://gsk.labbej27.fr/logo.jpeg" type="image/jpeg">
<link rel="shortcut icon" href="https://gsk.labbej27.fr/logo.jpeg" type="image/jpeg"> <link rel="shortcut icon" href="https://gsk.labbej27.fr/logo.jpeg" type="image/jpeg">
<style> <style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
:root { :root {
--gsk-orange: #f36f21; --gsk-orange: #f36f21;
--gsk-dark: #1c2526; --gsk-dark: #1c2526;
} }
* { margin: 0; padding: 0; box-sizing: border-box; } * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body { body {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
background-color: #f8f9fa; background-color: #f8f9fa;
color: #333; color: #333;
line-height: 1.6; line-height: 1.6;
} }
header { header {
background: linear-gradient(135deg, var(--gsk-dark), #2a3a3d); background: linear-gradient(135deg, var(--gsk-dark), #2a3a3d);
color: white; color: white;
padding: 1rem 0; padding: 1rem 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.2); box-shadow: 0 4px 12px rgba(0,0,0,.2);
} }
.header-content { .header-content {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem; padding: 0 2rem;
display: flex;
justify-content: center;
align-items: center;
} }
.logo img { .logo img {
height: 65px; height: 65px;
} }
.hero { .hero {
background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('https://picsum.photos/id/1015/2000/800') center/cover; background:
min-height: 85vh; linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
url('https://picsum.photos/id/1015/2000/800')
center/cover;
min-height: calc(100vh - 95px);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@@ -56,155 +65,247 @@
color: white; color: white;
padding: 2rem; padding: 2rem;
} }
.hero-content { .hero-content {
width: 100%;
max-width: 1000px; max-width: 1000px;
} }
.hero h1 { .hero h1 {
font-size: 3.2rem; font-size: 3rem;
color: var(--gsk-orange); color: var(--gsk-orange);
margin-bottom: 1.5rem; margin-bottom: 1rem;
} }
.subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
}
.choice-container { .choice-container {
display: flex; display: flex;
gap: 3rem;
justify-content: center; justify-content: center;
gap: 2rem;
flex-wrap: wrap; flex-wrap: wrap;
margin-top: 2.5rem;
} }
.choice-card { .choice-card {
background: white; background: white;
color: #333; color: #333;
border-radius: 16px; border-radius: 18px;
padding: 3rem 2.5rem; padding: 2rem;
width: 420px; width: 420px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transition: all 0.3s ease;
cursor: pointer; cursor: pointer;
text-align: center; border: 3px solid transparent;
box-shadow: 0 10px 30px rgba(0,0,0,.15);
transition: all .25s ease;
} }
.choice-card:hover { .choice-card:hover {
transform: translateY(-15px); transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(243, 111, 33, 0.3); border-color: var(--gsk-orange);
box-shadow: 0 18px 35px rgba(243,111,33,.25);
} }
.choice-card .icon { .choice-card:active {
font-size: 5.5rem; transform: scale(.98);
margin-bottom: 1.5rem; }
.icon {
display: block; display: block;
font-size: 4rem;
margin-bottom: 1rem;
} }
.choice-card h2 { .choice-card h2 {
color: var(--gsk-orange); color: var(--gsk-orange);
font-size: 2rem; font-size: 1.8rem;
margin-bottom: 1rem; margin-bottom: .75rem;
line-height: 1.3; line-height: 1.3;
} }
.choice-card .lang {
display: block;
font-size: 1rem;
font-weight: 400;
color: #666;
margin-top: .3rem;
}
.choice-card p { .choice-card p {
font-size: 1.15rem;
margin-bottom: 2rem;
color: #555; color: #555;
margin-bottom: 1.2rem;
} }
.btn-continuer { .tap-message {
background: var(--gsk-orange); color: var(--gsk-orange);
color: white; font-weight: 700;
border: none; font-size: 1rem;
padding: 14px 40px;
border-radius: 50px;
font-size: 1.15rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
} }
.btn-continuer:hover {
background: #e05e1c;
transform: scale(1.05);
}
footer { footer {
background: var(--gsk-dark); background: var(--gsk-dark);
color: #aaa; color: #aaa;
text-align: center; text-align: center;
padding: 2.5rem; padding: 2rem;
margin-top: 4rem;
} }
footer a {
color: var(--gsk-orange);
text-decoration: none;
}
/* MOBILE */
@media (max-width: 768px) { @media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.choice-container { gap: 2rem; } .header-content {
.choice-card { width: 100%; max-width: 380px; } padding: 0 1rem;
}
.logo img {
height: 50px;
}
.hero {
min-height: auto;
padding: 1.5rem 1rem 2rem;
}
.hero h1 {
font-size: 2rem;
margin-bottom: .5rem;
}
.subtitle {
font-size: 1.15rem;
margin-bottom: 1.2rem;
}
.choice-container {
flex-direction: column;
gap: .8rem;
}
.choice-card {
width: 100%;
max-width: none;
padding: 1.25rem;
}
.icon {
font-size: 2.8rem;
margin-bottom: .5rem;
}
.choice-card h2 {
font-size: 1.3rem;
margin-bottom: .4rem;
}
.choice-card p {
display: none;
}
.tap-message {
font-size: .95rem;
}
} }
</style> </style>
</head> </head>
<body> <body>
<header>
<div class="header-content"> <header>
<div class="logo"> <div class="header-content">
<img src="https://gsk.labbej27.fr/logo.jpeg" alt="GSK Logo"> <div class="logo">
</div> <img src="https://gsk.labbej27.fr/logo.jpeg" alt="GSK Logo">
</div> </div>
</header> </div>
</header>
<section class="hero"> <section class="hero">
<div class="hero-content"> <div class="hero-content">
<h1>Bienvenue chez GSK</h1>
<p style="font-size: 1.65rem; margin-bottom: 3rem;">Veuillez sélectionner votre catégorie :</p>
<div class="choice-container">
<!-- Visiteur - 3 langues -->
<div class="choice-card" onclick="goToPage('visiteur')">
<span class="icon">👩‍💼</span>
<h2>Visiteur<br>
<span style="font-size: 1.1rem; font-weight: 400;">Visitor / Visitante</span>
</h2>
<p>Accès aux règles de sécurité pour les visiteurs</p>
<button class="btn-continuer">Continuer →</button>
</div>
<!-- Livreurs - 6 langues --> <h1>Bienvenue chez GSK</h1>
<div class="choice-card" onclick="goToPage('livreur')">
<span class="icon">🚚</span>
<h2>Livreurs / Transporteurs<br>
<span style="font-size: 1.05rem; font-weight: 400;">
Drivers / Conductores / Водители / Водії / Kierowcy
</span>
</h2>
<p>Accès aux consignes spécifiques pour les livreurs</p>
<button class="btn-continuer">Continuer →</button>
</div>
</div>
</div>
</section>
<footer> <p class="subtitle">
<p>&copy; 2026 GSK plc — Règles de Sécurités</p> Veuillez sélectionner votre catégorie
<p style="margin-top: 8px; font-size: 0.95rem;">Développé par LABBEJ27 pour Fiducial Évreux</p>
<p style="margin-top: 15px; font-size: 0.85rem; opacity: 0.75;">
Code source disponible sur :
<a href="https://labbej27.duckdns.org/labbej/gsk-accueil"
target="_blank"
style="color: #f36f21;">
Gitea — gsk-accueil
</a>
</p> </p>
</footer>
<script> <div class="choice-container">
function goToPage(category) {
if (category === 'visiteur') { <div class="choice-card" onclick="goToPage('visiteur')">
window.location.href = 'https://gsk.labbej27.fr/visiteurs.html'; <span class="icon">👩‍💼</span>
} else if (category === 'livreur') {
window.location.href = 'https://gsk.labbej27.fr/livreurs.html'; <h2>
} Visiteur
<span class="lang">
Visitor / Visitante
</span>
</h2>
<p>
Accès aux règles de sécurité pour les visiteurs
</p>
<div class="tap-message">
👉 Appuyez pour continuer
</div>
</div>
<div class="choice-card" onclick="goToPage('livreur')">
<span class="icon">🚚</span>
<h2>
Livreurs / Transporteurs
<span class="lang">
Drivers / Conductores / Водители /
Водії / Kierowcy
</span>
</h2>
<p>
Accès aux consignes spécifiques pour les livreurs
</p>
<div class="tap-message">
👉 Appuyez pour continuer
</div>
</div>
</div>
</div>
</section>
<footer>
<p>&copy; 2026 GSK plc — Règles de Sécurité</p>
<p style="margin-top:8px;font-size:.95rem;">
Développé par LABBEJ27 pour Fiducial Évreux
</p>
<p style="margin-top:15px;font-size:.85rem;opacity:.75;">
Code source disponible sur :
<a href="https://labbej27.duckdns.org/labbej/gsk-accueil" target="_blank">
Gitea — gsk-accueil
</a>
</p>
</footer>
<script>
function goToPage(category) {
if (category === 'visiteur') {
window.location.href =
'https://gsk.labbej27.fr/visiteurs.html';
} }
</script>
if (category === 'livreur') {
window.location.href =
'https://gsk.labbej27.fr/livreurs.html';
}
}
</script>
</body> </body>
</html> </html>