mirror of
https://github.com/ikrpg/ikrpg.github.io.git
synced 2026-05-13 14:27:22 +00:00
Fixed portrait print bug (portrait was not moved with stat card).
This commit is contained in:
parent
e21d04fc85
commit
e8dfbf41e1
2 changed files with 26 additions and 27 deletions
|
|
@ -21,6 +21,7 @@ tags: [Character Cards]
|
||||||
#seed { display: block; width: 100%; max-height: 26px; overflow: none; }
|
#seed { display: block; width: 100%; max-height: 26px; overflow: none; }
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
|
section.content div#pic { margin-top: -700px; margin-left: -500px; }
|
||||||
section.content form#stats { position: absolute; display: block; margin-top: -850px; margin-left: -500px; }
|
section.content form#stats { position: absolute; display: block; margin-top: -850px; margin-left: -500px; }
|
||||||
section.content form#skills { position: absolute; display: block; margin-top: -850px; margin-left: 250px; }
|
section.content form#skills { position: absolute; display: block; margin-top: -850px; margin-left: 250px; }
|
||||||
section.content form#abilities { position: absolute; display: block; margin-top: 150px; margin-left: -500px; }
|
section.content form#abilities { position: absolute; display: block; margin-top: 150px; margin-left: -500px; }
|
||||||
|
|
@ -46,11 +47,9 @@ tags: [Character Cards]
|
||||||
| <a href="#stats">Stats</a> |
|
| <a href="#stats">Stats</a> |
|
||||||
<a href="#skills">Skills</a> |
|
<a href="#skills">Skills</a> |
|
||||||
<a href="#abilities">Abilities/Benefits</a> |
|
<a href="#abilities">Abilities/Benefits</a> |
|
||||||
<!--a href="#benefits">Benefits</a> | -->
|
|
||||||
<a href="#spells">Spells</a> |
|
<a href="#spells">Spells</a> |
|
||||||
<a href="#gear">Gear</a> |
|
<a href="#gear">Gear</a> |
|
||||||
<a href="#notes">Notes</a> |
|
<a href="#notes">Notes</a> |
|
||||||
<!--a href="#details">Details</a-->
|
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<div class="sheet">
|
<div class="sheet">
|
||||||
|
|
|
||||||
|
|
@ -253,7 +253,7 @@ var ikrpg = ikrpg || {};
|
||||||
textarea.on("paste", delayedResize(textarea));
|
textarea.on("paste", delayedResize(textarea));
|
||||||
textarea.on("drop", delayedResize(textarea));
|
textarea.on("drop", delayedResize(textarea));
|
||||||
textarea.on("keydown", delayedResize(textarea));
|
textarea.on("keydown", delayedResize(textarea));
|
||||||
})
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
ikrpg.cards.fillOut = function() {
|
ikrpg.cards.fillOut = function() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue