ajout du systeme de layout
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>(RE)Sources Relationnelles - Ministère des Solidarités et de la Santé</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<style>
|
||||
/* Couleurs officielles du cahier des charges */
|
||||
.bg-niagara { background-color: #06989e; }
|
||||
.text-niagara { color: #06989e; }
|
||||
.border-niagara { border-color: #06989e; }
|
||||
.bg-candlelight { background-color: #fce117; }
|
||||
|
||||
/* Améliorations de style */
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
|
||||
}
|
||||
.transition-smooth {
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
.glow-niagara {
|
||||
box-shadow: 0 0 20px rgba(6, 152, 158, 0.3);
|
||||
}
|
||||
.gradient-niagara {
|
||||
background: linear-gradient(135deg, #06989e 0%, #048a91 100%);
|
||||
}
|
||||
.gradient-light {
|
||||
background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@@ -23,10 +23,10 @@
|
||||
</div>
|
||||
|
||||
<nav class="flex items-center gap-2 whitespace-nowrap">
|
||||
<a href="/login" class="px-5 py-2.5 text-sm font-bold text-niagara border-2 border-niagara rounded-lg hover:bg-niagara hover:text-white transition-smooth duration-200">
|
||||
<a href="{{ route('login') }}" class="px-5 py-2.5 text-sm font-bold text-niagara border-2 border-niagara rounded-lg hover:bg-niagara hover:text-white transition-smooth duration-200">
|
||||
Connexion
|
||||
</a>
|
||||
<a href="/register" class="px-5 py-2.5 text-sm font-bold bg-candlelight text-gray-900 rounded-lg shadow-md hover:shadow-lg hover:-translate-y-0.5 transition-smooth duration-200">
|
||||
<a href="{{ route('register') }}" class="px-5 py-2.5 text-sm font-bold bg-candlelight text-gray-900 rounded-lg shadow-md hover:shadow-lg hover:-translate-y-0.5 transition-smooth duration-200">
|
||||
S'inscrire
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user