88 lines
1.7 KiB
Plaintext
88 lines
1.7 KiB
Plaintext
&.ask-roll {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.1);
|
|
}
|
|
|
|
.hamalron-tarot-draw {
|
|
padding: 0.5rem;
|
|
|
|
.tarot-draw-header {
|
|
margin-bottom: 1rem;
|
|
|
|
.tarot-draw-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin: 0;
|
|
padding-bottom: 0.5rem;
|
|
border-bottom: 2px solid var(--color-border-dark);
|
|
font-size: 1.25rem;
|
|
color: var(--color-text-dark-primary);
|
|
|
|
i {
|
|
color: #667eea;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tarot-draw-content {
|
|
display: flex;
|
|
gap: 1rem;
|
|
|
|
.tarot-card-image {
|
|
flex-shrink: 0;
|
|
|
|
img {
|
|
width: 150px;
|
|
height: 150px;
|
|
object-fit: cover;
|
|
border-radius: 0.25rem;
|
|
border: 2px solid var(--color-border-dark);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
}
|
|
|
|
.tarot-card-details {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
|
|
.tarot-detail-row {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
|
|
.detail-label {
|
|
font-weight: bold;
|
|
color: var(--color-text-dark-secondary);
|
|
}
|
|
|
|
.detail-value {
|
|
color: var(--color-text-dark-primary);
|
|
}
|
|
}
|
|
|
|
.tarot-description {
|
|
margin-top: 0.5rem;
|
|
padding-top: 0.5rem;
|
|
border-top: 1px solid var(--color-border-dark);
|
|
|
|
.description-label {
|
|
font-weight: bold;
|
|
color: var(--color-text-dark-secondary);
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.description-content {
|
|
color: var(--color-text-dark-primary);
|
|
font-style: italic;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|