Spaces:
Running
Running
File size: 834 Bytes
4a5eddd fb39000 4a5eddd fb39000 7d99ff9 4a5eddd fb39000 4a5eddd fb39000 4a5eddd fb39000 4a5eddd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
/* 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;
}
|