Spaces:
Running
Running
| /* Custom styles to enhance the Tailwind base */ | |
| #drop-zone.highlight { | |
| border-color: #6366f1; | |
| background-color: #f0f5ff; | |
| } | |
| .orientation-btn.active { | |
| border: 2px solid #6366f1; | |
| } | |
| .poster-page { | |
| position: relative; | |
| background-color: white; | |
| overflow: hidden; | |
| box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
| } | |
| .poster-page::before { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| border: 1px dashed rgba(0, 0, 0, 0.2); | |
| pointer-events: none; | |
| } | |
| .cut-line { | |
| position: absolute; | |
| background-color: rgba(255, 0, 0, 0.5); | |
| z-index: 10; | |
| } | |
| .page-number { | |
| position: absolute; | |
| bottom: 4px; | |
| right: 4px; | |
| background-color: rgba(255, 255, 255, 0.8); | |
| padding: 2px 6px; | |
| border-radius: 4px; | |
| font-size: 12px; | |
| font-weight: bold; | |
| } | |