Latest updates
This commit is contained in:
@@ -713,6 +713,69 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Style pour le résumé des cartes numérotées
|
||||
&.chat-tarot-summary {
|
||||
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
|
||||
border: 2px solid #667eea;
|
||||
border-radius: 0.5rem;
|
||||
padding: 1rem;
|
||||
|
||||
.tarot-summary-title {
|
||||
text-align: center;
|
||||
color: #667eea;
|
||||
font-size: 1.2rem;
|
||||
margin: 0 0 1rem 0;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
|
||||
i {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.tarot-cards-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 0.5rem;
|
||||
|
||||
.tarot-card-summary-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
background: white;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 0.25rem;
|
||||
padding: 0.35rem;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
transition:
|
||||
transform 0.2s,
|
||||
box-shadow 0.2s;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
img {
|
||||
width: 35px;
|
||||
height: auto;
|
||||
border-radius: 0.2rem;
|
||||
margin-bottom: 0.3rem;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.card-name {
|
||||
font-size: 0.65rem;
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
line-height: 1.1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse-banner {
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@
|
||||
--font-primary: "TimesNewRoman";
|
||||
--font-secondary: "TimesNewRoman";
|
||||
--font-title: "EagleLake";
|
||||
--logo-standard: url("../assets/ui/pentagram_logo.webp");
|
||||
--logo-standard: url("../assets/ui/rose_des_vents_01.webp");
|
||||
--title-color: #dea60b;
|
||||
--background-box: #e0dcdc;
|
||||
--color-success: rgb(15, 122, 15);
|
||||
|
||||
+3
-1
@@ -5,7 +5,9 @@
|
||||
button {
|
||||
background-image: none;
|
||||
background-color: var(--color-dark-6);
|
||||
color: var(--color-light-1);
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
input,
|
||||
|
||||
Reference in New Issue
Block a user