Commit ·
435497a
1
Parent(s): 158fe8d
fix: position right-side label in margin zone (1.65cm x 23.42cm, right:-2.54cm)
Browse files- app/static/css/print.css +8 -5
app/static/css/print.css
CHANGED
|
@@ -89,15 +89,18 @@ body {
|
|
| 89 |
}
|
| 90 |
|
| 91 |
/* ------------------------------
|
| 92 |
-
DECORATIVE RIGHT-SIDE
|
| 93 |
-
|
|
|
|
|
|
|
|
|
|
| 94 |
------------------------------ */
|
| 95 |
.hb-right-label {
|
| 96 |
position: fixed;
|
| 97 |
top: 0;
|
| 98 |
-
right:
|
| 99 |
-
width:
|
| 100 |
-
height:
|
| 101 |
z-index: 0;
|
| 102 |
pointer-events: none;
|
| 103 |
overflow: hidden;
|
|
|
|
| 89 |
}
|
| 90 |
|
| 91 |
/* ------------------------------
|
| 92 |
+
DECORATIVE RIGHT-SIDE LABEL
|
| 93 |
+
position:fixed repeats on every page.
|
| 94 |
+
right:-2.54cm pushes into the right margin zone.
|
| 95 |
+
On cover / fullpage pages (page:cover → @page cover margin:0)
|
| 96 |
+
the label is pushed off-page automatically.
|
| 97 |
------------------------------ */
|
| 98 |
.hb-right-label {
|
| 99 |
position: fixed;
|
| 100 |
top: 0;
|
| 101 |
+
right: -2.54cm;
|
| 102 |
+
width: 1.65cm;
|
| 103 |
+
height: 23.42cm;
|
| 104 |
z-index: 0;
|
| 105 |
pointer-events: none;
|
| 106 |
overflow: hidden;
|