4,554
edits
No edit summary |
No edit summary |
||
Line 296: | Line 296: | ||
transform: translate(-50%, -50%); | transform: translate(-50%, -50%); | ||
color: black; | color: black; | ||
background-color: transparent | background-color: rgba(255, 255, 255, 0.7); /* Slightly transparent for readability */ | ||
padding: 10px; | padding: 10px; | ||
text-align: center; | text-align: center; | ||
Line 302: | Line 302: | ||
font-style: italic; | font-style: italic; | ||
max-width: 90%; /* Adjust as needed */ | max-width: 90%; /* Adjust as needed */ | ||
white-space: | white-space: normal; /* Allow text wrapping */ | ||
overflow: | overflow: visible; /* Let the text be visible */ | ||
text-overflow: ellipsis; | text-overflow: ellipsis; /* Use ellipsis for text overflow */ | ||
border-radius: 5px; /* Optional: for better appearance */ | |||
} | } | ||