MINOOOOOOOOUUUUUUU

This commit is contained in:
Yass 2026-03-03 12:01:03 +01:00
parent 5d03bf936d
commit 4bddf0b409
5 changed files with 117 additions and 20 deletions

View file

@ -128,3 +128,51 @@ body {
.txt_title {
color: rgb(51, 152, 217);
}
/* On cible la card sans casser ses propriétés Bootstrap */
.tiger-theme {
background-color: #ff8c00 !important; /* Orange tigre */
background-image: repeating-linear-gradient(
45deg,
transparent,
transparent 30px,
rgba(0, 0, 0, 0.15) 30px,
rgba(0, 0, 0, 0.15) 60px
) !important;
border: 2px solid #000 !important;
color: #000 !important;
position: relative;
z-index: 1;
}
/* Style du texte pour qu'il ressorte sur l'orange */
.tiger-text {
font-weight: 800 !important;
text-transform: uppercase;
color: #000 !important;
}
.tiger-date {
font-size: 0.8rem;
font-weight: bold;
color: rgba(0, 0, 0, 0.7);
}
/* Bordure de l'image (n'affecte pas la taille de la card) */
.tiger-border {
box-shadow: 0 0 0 4px #000;
}
/* Bouton style tigre */
.btn-tiger {
background-color: #000 !important;
color: #ff8c00 !important;
border: none !important;
font-weight: bold !important;
transition: transform 0.2s;
}
.btn-tiger:hover {
transform: scale(1.05);
background-color: #222 !important;
}