From 6d7572684852381f1345c4b96329b55845e04f68 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Tue, 7 Apr 2026 16:44:47 +0000 Subject: [PATCH] a --- Vue/Accueilassure/index.php | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/Vue/Accueilassure/index.php b/Vue/Accueilassure/index.php index 3f8ed03..d1f30ec 100755 --- a/Vue/Accueilassure/index.php +++ b/Vue/Accueilassure/index.php @@ -119,7 +119,38 @@ .table-hover tbody tr:hover { background-color: rgba(0, 0, 0, 0.075); } - + + /* btn_bareme */ + .btn-bareme { + display: flex; + width: 100%; + box-sizing: border-box; + justify-content: center; + align-items: center; + gap: 8px; + padding: 10px 20px; + + background: #cfe2ff; /* bleu clair (btn-info) */ + border: 0.5px solid #9ec5fe; + color: #084298; /* texte bleu foncé */ + font-size: 18px; /* taille augmentée */ + + border-radius: 8px; + font-weight: 500; + text-decoration: none; + cursor: pointer; + transition: background 0.15s, border-color 0.15s, transform 0.1s; + } + + .btn-bareme:hover { + background: #f5f5f5; + border-color: #aaaaaa; + } + + .btn-bareme:active { + transform: scale(0.98); + } +