This commit is contained in:
KANE LAZENI 2026-04-07 16:44:47 +00:00
parent b61731b370
commit 6d75726848

View File

@ -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);
}
</style>
<?php