Reduced font size for several fields of the CHaracter Generator

This commit is contained in:
Yord 2015-10-11 12:21:51 +02:00
parent b11edb7e59
commit 4adbf7641d
4 changed files with 134 additions and 133 deletions

View file

@ -19,7 +19,7 @@ tags: [Version 0.2 beta]
Done: S180: Melee Weapon Widget Done: S180: Melee Weapon Widget
Done: S190: Ranged Weapon Widget Done: S190: Ranged Weapon Widget
Done: S200: Add Benefits to Index Done: S200: Add Benefits to Index
S010: Add all races, careers, etc. Done: S010: Add all races, careers, etc.
S020: "overflow" input fields S020: "overflow" input fields
S050: Benefit descriptions and pages (M030) [Pages Done] S050: Benefit descriptions and pages (M030) [Pages Done]
S060: Ability descriptions and pages (M040) [Pages Done] S060: Ability descriptions and pages (M040) [Pages Done]
@ -31,16 +31,16 @@ tags: [Version 0.2 beta]
Done: M020: Skill DB Done: M020: Skill DB
Done: M090: Mechanika DB [not needed] Done: M090: Mechanika DB [not needed]
Done: M110: Capacitor DB Done: M110: Capacitor DB
Done: M050: Melee Weapon DB
Done: M060: Ranged Weapon DB
Done: M160: Spell DB
M010: Armor DB [Done for regular armor] M010: Armor DB [Done for regular armor]
M030: Benefit DB (S200) [only all names] M030: Benefit DB (S200) [only all names]
M040: Ability DB [only all names] M040: Ability DB [only all names]
Done: M050: Melee Weapon DB
Done: M060: Ranged Weapon DB
M070: Gear DB M070: Gear DB
M080: Connections DB (M170) M080: Connections DB (M170)
M100: Runeplate DB [only all names] M100: Runeplate DB [only all names]
M140: Character Portraits M140: Character Portraits
Done: M160: Spell DB
M170: Add Connections to Index M170: Add Connections to Index
L8er: M120: Steamjack DB L8er: M120: Steamjack DB
L8er: M130: Riding DB L8er: M130: Riding DB

View file

@ -1,5 +1,5 @@
CACHE MANIFEST CACHE MANIFEST
# 2015-10-10 v3 # 2015-10-10 v4
CACHE: CACHE:

View file

@ -15,100 +15,101 @@ var ikrpg = ikrpg || {};
// # Manage characters # \\ // # Manage characters # \\
(function() { (function() {
var db2 = new PouchDB('characters.ikrpg'); var db2 = new PouchDB('characters.ikrpg');
var hero = ikrpg.cards.data; var hero = ikrpg.cards.data;
listCharacters(); listCharacters();
function saveHero() { function saveHero() {
ikrpg.cards.updateData(); ikrpg.cards.updateData();
hero = ikrpg.cards.data; hero = ikrpg.cards.data;
var _id = hero["hero-name"].replace(/["']/g, ""); var _id = hero["hero-name"].replace(/["']/g, "");
db2.get(_id, function(error, doc) { db2.get(_id, function(error, doc) {
if(error) { // hero not in db yet if(error) { // hero not in db yet
doc = hero; doc = hero;
doc["_id"] = _id; doc["_id"] = _id;
db2.put(doc); db2.put(doc);
} else { // hero already in db } else { // hero already in db
hero["_id"] = doc["_id"]; hero["_id"] = doc["_id"];
hero["_rev"] = doc["_rev"]; hero["_rev"] = doc["_rev"];
db2.put(hero); db2.put(hero);
} }
listCharacters(); listCharacters();
}); });
} }
function listCharacters() { function listCharacters() {
$("#characters > tbody").remove(); $("#characters > tbody").remove();
$("#characters").append("<tbody>"); $("#characters").append("<tbody>");
db2.allDocs({include_docs: true}, function(error, results) { db2.allDocs({include_docs: true}, function(error, results) {
var rows = results.rows; var rows = results.rows;
$.each(rows, function(index, row) { $.each(rows, function(index, row) {
var character = row.doc; var character = row.doc;
function appendTr() { function appendTr() {
$("#characters > tbody").append("<tr>"); $("#characters > tbody").append("<tr>");
}
function appendTd() {
$("#characters > tbody > tr:last-of-type").append("<td>");
}
function lastTd() {
return $("#characters > tbody > tr:last-of-type > td:last-of-type");
}
appendTr();
appendTd();
lastTd().text(character["hero-name"]);
appendTd();
lastTd().text(character["archetype"]);
appendTd();
lastTd().text(character["race"]);
appendTd();
lastTd().text(character["careers"]);
appendTd();
lastTd().html("<a href=\"javascript:ikrpg.sheet.showCharacter('"+character["_id"]+"')\">Load</a>");
appendTd();
lastTd().html("<a href=\"javascript:ikrpg.sheet.deleteCharacter('"+character["_id"]+"', '"+character["_rev"]+"')\"><strong>Delete</strong></a>");
});
});
}
function fill(error, character) {
if(!error) {
ikrpg.cards.data = $.extend(ikrpg.cards.data, character);
ikrpg.cards.init();
ikrpg.cards.switchWeapons();
ikrpg.cards.heroNameHack();
ikrpg.cards.setPortrait();
} }
function appendTd() {
$("#characters > tbody > tr:last-of-type").append("<td>");
}
function lastTd() {
return $("#characters > tbody > tr:last-of-type > td:last-of-type");
}
appendTr();
appendTd();
lastTd().text(character["hero-name"]);
appendTd();
lastTd().text(character["archetype"]);
appendTd();
lastTd().text(character["race"]);
appendTd();
lastTd().text(character["careers"]);
appendTd();
lastTd().html("<a href=\"javascript:ikrpg.sheet.showCharacter('"+character["_id"]+"')\">Load</a>");
appendTd();
lastTd().html("<a href=\"javascript:ikrpg.sheet.deleteCharacter('"+character["_id"]+"', '"+character["_rev"]+"')\"><strong>Delete</strong></a>");
});
});
}
function fill(error, character) {
if(!error) {
ikrpg.cards.data = $.extend(ikrpg.cards.data, character);
ikrpg.cards.init();
ikrpg.cards.switchWeapons();
ikrpg.cards.heroNameHack();
ikrpg.cards.setPortrait();
} }
}
function showCharacter(characterId) { function showCharacter(characterId) {
db2.get(characterId, sheet.fill); db2.get(characterId, sheet.fill);
} }
function deleteCharacter(characterId, characterRev) { function deleteCharacter(characterId, characterRev) {
db2.remove(characterId, characterRev, function(error, code) { if(confirm("This will delete your character. Do you want to proceed?")) {
listCharacters(); db2.remove(characterId, characterRev, function(error, code) {
}); listCharacters();
});
} }
}
// ## Initialize variables ## \\ // ## Initialize variables ## \\
sheet.saveHero = saveHero; sheet.saveHero = saveHero;
sheet.fill = fill; sheet.fill = fill;
sheet.showCharacter = showCharacter; sheet.showCharacter = showCharacter;
sheet.deleteCharacter = deleteCharacter; sheet.deleteCharacter = deleteCharacter;
})(); })();
})(); })();

View file

@ -68,39 +68,39 @@ form#import-export:target { display: block; }
.character-sheet #permax { margin: 602px 0 0 129px; width: 13px; text-align: center; } .character-sheet #permax { margin: 602px 0 0 129px; width: 13px; text-align: center; }
.character-sheet #wil { margin: 648px 0 0 50px; width: 48px; font-size: 30px; text-align: center; } .character-sheet #wil { margin: 648px 0 0 50px; width: 48px; font-size: 30px; text-align: center; }
.character-sheet #rat1 { display: block !important; } .character-sheet #rat1 { display: block !important; }
.character-sheet #rat1 .name { margin: 114px 0 0 224px; width: 103px; } .character-sheet #rat1 .name { font-size: 11px; padding-top: 3px; margin: 114px 0 0 224px; width: 103px; }
.character-sheet #rat1 .rng { margin: 106px 0 0 341px; width: 25px; text-align: center; } .character-sheet #rat1 .rng { margin: 106px 0 0 341px; width: 25px; text-align: center; }
.character-sheet #rat1 .rat { margin: 106px 0 0 375px; width: 25px; text-align: center; } .character-sheet #rat1 .rat { margin: 106px 0 0 375px; width: 25px; text-align: center; }
.character-sheet #rat1 .aoe {} .character-sheet #rat1 .aoe {}
.character-sheet #rat1 .pow { margin: 106px 0 0 409px; width: 25px; text-align: center; } .character-sheet #rat1 .pow { margin: 106px 0 0 409px; width: 25px; text-align: center; }
.character-sheet #rat1 .notes { margin: 138px 0 0 224px; width: 216px; } .character-sheet #rat1 .notes { font-size: 11px; padding-top: 3px; margin: 138px 0 0 224px; width: 216px; }
.character-sheet #rat1 .ammo { margin: 138px 0 0 341px; width: 99px; } .character-sheet #rat1 .ammo { margin: 138px 0 0 341px; width: 99px; }
.character-sheet #rat2 { display: block !important; } .character-sheet #rat2 { display: block !important; }
.character-sheet #rat2 .name { margin: 182px 0 0 224px; width: 103px; } .character-sheet #rat2 .name { font-size: 11px; padding-top: 3px; margin: 182px 0 0 224px; width: 103px; }
.character-sheet #rat2 .rng { margin: 174px 0 0 341px; width: 25px; text-align: center; } .character-sheet #rat2 .rng { margin: 174px 0 0 341px; width: 25px; text-align: center; }
.character-sheet #rat2 .rat { margin: 174px 0 0 375px; width: 25px; text-align: center; } .character-sheet #rat2 .rat { margin: 174px 0 0 375px; width: 25px; text-align: center; }
.character-sheet #rat2 .aoe {} .character-sheet #rat2 .aoe {}
.character-sheet #rat2 .pow { margin: 174px 0 0 409px; width: 25px; text-align: center; } .character-sheet #rat2 .pow { margin: 174px 0 0 409px; width: 25px; text-align: center; }
.character-sheet #rat2 .notes { margin: 206px 0 0 224px; width: 216px; } .character-sheet #rat2 .notes { font-size: 11px; padding-top: 3px; margin: 206px 0 0 224px; width: 216px; }
.character-sheet #rat2 .ammo { margin: 206px 0 0 341px; width: 99px; } .character-sheet #rat2 .ammo { margin: 206px 0 0 341px; width: 99px; }
.character-sheet #mat1 { display: block !important; } .character-sheet #mat1 { display: block !important; }
.character-sheet #mat1 .name { margin: 265px 0 0 224px; width: 140px; } .character-sheet #mat1 .name { font-size: 11px; padding-top: 3px; margin: 265px 0 0 224px; width: 140px; }
.character-sheet #mat1 .mat { margin: 277px 0 0 375px; width: 25px; text-align: center; } .character-sheet #mat1 .mat { margin: 277px 0 0 375px; width: 25px; text-align: center; }
.character-sheet #mat1 .pow {} .character-sheet #mat1 .pow {}
.character-sheet #mat1 .ps { margin: 277px 0 0 409px; width: 25px; text-align: center; } .character-sheet #mat1 .ps { margin: 277px 0 0 409px; width: 25px; text-align: center; }
.character-sheet #mat1 .notes { margin: 289px 0 0 224px; width: 140px; } .character-sheet #mat1 .notes { font-size: 11px; padding-top: 3px; margin: 289px 0 0 224px; width: 140px; }
.character-sheet #mat2 { display: block !important; } .character-sheet #mat2 { display: block !important; }
.character-sheet #mat2 .name { margin: 327px 0 0 224px; width: 140px; } .character-sheet #mat2 .name { font-size: 11px; padding-top: 3px; margin: 327px 0 0 224px; width: 140px; }
.character-sheet #mat2 .mat { margin: 339px 0 0 375px; width: 25px; text-align: center; } .character-sheet #mat2 .mat { margin: 339px 0 0 375px; width: 25px; text-align: center; }
.character-sheet #mat2 .pow {} .character-sheet #mat2 .pow {}
.character-sheet #mat2 .ps { margin: 339px 0 0 409px; width: 25px; text-align: center; } .character-sheet #mat2 .ps { margin: 339px 0 0 409px; width: 25px; text-align: center; }
.character-sheet #mat2 .notes { margin: 351px 0 0 224px; width: 140px; } .character-sheet #mat2 .notes { font-size: 11px; padding-top: 3px; margin: 351px 0 0 224px; width: 140px; }
.character-sheet #mat3 { display: block !important; } .character-sheet #mat3 { display: block !important; }
.character-sheet #mat3 .name { margin: 415px 0 0 171px; width: 160px; } .character-sheet #mat3 .name { font-size: 11px; padding-top: 3px; margin: 415px 0 0 171px; width: 160px; }
.character-sheet #mat3 .mat { margin: 429px 0 0 375px; width: 25px; text-align: center; } .character-sheet #mat3 .mat { margin: 429px 0 0 375px; width: 25px; text-align: center; }
.character-sheet #mat3 .pow {} .character-sheet #mat3 .pow {}
.character-sheet #mat3 .ps { margin: 429px 0 0 409px; width: 25px; text-align: center; } .character-sheet #mat3 .ps { margin: 429px 0 0 409px; width: 25px; text-align: center; }
.character-sheet #mat3 .notes { margin: 439px 0 0 171px; width: 160px; } .character-sheet #mat3 .notes { font-size: 11px; padding-top: 3px; margin: 439px 0 0 171px; width: 160px; }
.character-sheet #mat3 .free { margin: 429px 0 0 341px; width: 25px; text-align: center; } .character-sheet #mat3 .free { margin: 429px 0 0 341px; width: 25px; text-align: center; }
.character-sheet #defracialmodifier { margin: 496px 0 0 289px; width: 34px; font-size: 20px; text-align: center; } .character-sheet #defracialmodifier { margin: 496px 0 0 289px; width: 34px; font-size: 20px; text-align: center; }
.character-sheet #defequipmentmodifiers { margin: 496px 0 0 344px; width: 34px; font-size: 20px; text-align: center; } .character-sheet #defequipmentmodifiers { margin: 496px 0 0 344px; width: 34px; font-size: 20px; text-align: center; }
@ -115,7 +115,7 @@ form#import-export:target { display: block; }
.character-sheet #cmdcommandskill { margin: 668px 0 0 289px; width: 34px; font-size: 20px; text-align: center; } .character-sheet #cmdcommandskill { margin: 668px 0 0 289px; width: 34px; font-size: 20px; text-align: center; }
.character-sheet #cmdabilitymodifier { margin: 668px 0 0 344px; width: 34px; font-size: 20px; text-align: center; } .character-sheet #cmdabilitymodifier { margin: 668px 0 0 344px; width: 34px; font-size: 20px; text-align: center; }
.character-sheet #cmd { margin: 668px 0 0 399px; width: 34px; font-size: 20px; text-align: center; } .character-sheet #cmd { margin: 668px 0 0 399px; width: 34px; font-size: 20px; text-align: center; }
.character-sheet .skill .title { margin: 2px 0 0 460px; width: 105px; } .character-sheet .skill .title { font-size: 11px; padding-top: 3px; margin: 2px 0 0 460px; width: 105px; }
.character-sheet .skill .base { margin: 2px 0 0 570px; width: 15px; text-align: center; } .character-sheet .skill .base { margin: 2px 0 0 570px; width: 15px; text-align: center; }
.character-sheet .skill .lvl { margin: 2px 0 0 609px; width: 15px; text-align: center; } .character-sheet .skill .lvl { margin: 2px 0 0 609px; width: 15px; text-align: center; }
.character-sheet .skill .sum { margin: 2px 0 0 643px; width: 15px; text-align: center; } .character-sheet .skill .sum { margin: 2px 0 0 643px; width: 15px; text-align: center; }
@ -142,8 +142,8 @@ form#import-export:target { display: block; }
.character-sheet #s20 {} .character-sheet #s20 {}
.character-sheet #s21 {} .character-sheet #s21 {}
.character-sheet .ability { position: absolute; } .character-sheet .ability { position: absolute; }
.character-sheet .ability .title { margin-left: 689px; width: 285px; } .character-sheet .ability .title { font-size: 11px; padding-top: 3px; margin-left: 689px; width: 285px; }
.character-sheet .ability .description { margin-left: 796px; width: 178px; } .character-sheet .ability .description { font-size: 11px; padding-top: 3px; margin-left: 796px; width: 178px; }
.character-sheet .ability .page { margin-left: 946px; width: 28px; text-align: right; } .character-sheet .ability .page { margin-left: 946px; width: 28px; text-align: right; }
.character-sheet #ability1 { margin-top: 135px; } .character-sheet #ability1 { margin-top: 135px; }
.character-sheet #ability2 { margin-top: 156px; } .character-sheet #ability2 { margin-top: 156px; }
@ -168,8 +168,8 @@ form#import-export:target { display: block; }
.character-sheet #feats { font-size: 40px; margin: 606px 0 0 698px; width: 51px; text-align: center; } .character-sheet #feats { font-size: 40px; margin: 606px 0 0 698px; width: 51px; text-align: center; }
.character-sheet .gear { position: absolute; margin-left: 5px; } .character-sheet .gear { position: absolute; margin-left: 5px; }
.character-sheet .gear .title { width: 285px; } .character-sheet .gear .title { font-size: 11px; padding-top: 3px; width: 285px; }
.character-sheet .gear .benefit { margin-left: 125px; width: 160px; } .character-sheet .gear .benefit { font-size: 11px; padding-top: 3px; margin-left: 125px; width: 160px; }
.character-sheet #gear1 { margin-top: 35px; } .character-sheet #gear1 { margin-top: 35px; }
.character-sheet #gear2 { margin-top: 55px; } .character-sheet #gear2 { margin-top: 55px; }
.character-sheet #gear3 { margin-top: 75px; } .character-sheet #gear3 { margin-top: 75px; }
@ -190,8 +190,8 @@ form#import-export:target { display: block; }
.character-sheet #gear18 { margin-top: 373px; } .character-sheet #gear18 { margin-top: 373px; }
.character-sheet #gear19 { margin-top: 393px; } .character-sheet #gear19 { margin-top: 393px; }
.character-sheet .wornarmor { position: absolute; margin-left: 5px; } .character-sheet .wornarmor { position: absolute; margin-left: 5px; }
.character-sheet .wornarmor .name { width: 183px; } .character-sheet .wornarmor .name { font-size: 11px; padding-top: 3px; width: 183px; }
.character-sheet .wornarmor .notes { margin-left: 75px; width: 108px; } .character-sheet .wornarmor .notes { font-size: 11px; padding-top: 3px; margin-left: 75px; width: 108px; }
.character-sheet .wornarmor .spd { margin-left: 186px; width: 17px; text-align: center; } .character-sheet .wornarmor .spd { margin-left: 186px; width: 17px; text-align: center; }
.character-sheet .wornarmor .def { margin-left: 225px; width: 17px; text-align: center; } .character-sheet .wornarmor .def { margin-left: 225px; width: 17px; text-align: center; }
.character-sheet .wornarmor .arm { margin-left: 260px; width: 17px; text-align: center; } .character-sheet .wornarmor .arm { margin-left: 260px; width: 17px; text-align: center; }
@ -200,8 +200,8 @@ form#import-export:target { display: block; }
.character-sheet #wornarmor3 { margin-top: 505px; } .character-sheet #wornarmor3 { margin-top: 505px; }
.character-sheet #wornarmor4 { margin-top: 525px; } .character-sheet #wornarmor4 { margin-top: 525px; }
.character-sheet .connection { position: absolute; margin-left: 5px; } .character-sheet .connection { position: absolute; margin-left: 5px; }
.character-sheet .connection .name { width: 286px; } .character-sheet .connection .name { font-size: 11px; padding-top: 3px; width: 286px; }
.character-sheet .connection .notes { margin-left: 98px; width: 188px; } .character-sheet .connection .notes { font-size: 11px; padding-top: 3px; margin-left: 98px; width: 188px; }
.character-sheet .connection .page { margin-left: 238px; width: 48px; text-align: right; } .character-sheet .connection .page { margin-left: 238px; width: 48px; text-align: right; }
.character-sheet #connection1 { margin-top: 597px; } .character-sheet #connection1 { margin-top: 597px; }
.character-sheet #connection2 { margin-top: 617px; } .character-sheet #connection2 { margin-top: 617px; }
@ -209,14 +209,14 @@ form#import-export:target { display: block; }
.character-sheet #connection4 { margin-top: 657px; } .character-sheet #connection4 { margin-top: 657px; }
.character-sheet #arcanetradition { position: absolute; margin: 9px 0 0 398px; width: 256px; } .character-sheet #arcanetradition { position: absolute; margin: 9px 0 0 398px; width: 256px; }
.character-sheet .spell { position: absolute; margin-left: 312px; } .character-sheet .spell { position: absolute; margin-left: 312px; }
.character-sheet .spell .title { width: 134px; } .character-sheet .spell .title { font-size: 11px; padding-top: 3px; width: 134px; }
.character-sheet .spell .cost { margin-left: 140px; width: 33px; text-align: center; } .character-sheet .spell .cost { margin-left: 140px; width: 33px; text-align: center; }
.character-sheet .spell .rng { margin-left: 178px; width: 32px; text-align: center; } .character-sheet .spell .rng { margin-left: 178px; width: 32px; text-align: center; }
.character-sheet .spell .aoe { margin-left: 215px; width: 32px; text-align: center; } .character-sheet .spell .aoe { margin-left: 215px; width: 32px; text-align: center; }
.character-sheet .spell .pow { margin-left: 252px; width: 33px; text-align: center; } .character-sheet .spell .pow { margin-left: 252px; width: 33px; text-align: center; }
.character-sheet .spell .up { margin-left: 290px; width: 32px; text-align: center; } .character-sheet .spell .up { margin-left: 290px; width: 32px; text-align: center; }
.character-sheet .spell .off { margin-left: 327px; width: 28px; text-align: center; } .character-sheet .spell .off { margin-left: 327px; width: 28px; text-align: center; }
.character-sheet .spell .description { margin-top: 23px; width: 355px; } .character-sheet .spell .description { font-size: 11px; padding-top: 3px; margin-top: 23px; width: 355px; }
.character-sheet #spell1 { margin-top: 47px; } .character-sheet #spell1 { margin-top: 47px; }
.character-sheet #spell2 { margin-top: 97px; } .character-sheet #spell2 { margin-top: 97px; }
.character-sheet #spell3 { margin-top: 147px; } .character-sheet #spell3 { margin-top: 147px; }
@ -227,10 +227,10 @@ form#import-export:target { display: block; }
.character-sheet #spell8 { margin-top: 395px; } .character-sheet #spell8 { margin-top: 395px; }
.character-sheet .iku .mechanika { display: none; } .character-sheet .iku .mechanika { display: none; }
.character-sheet .mechanika { position: absolute; margin-left: 312px; } .character-sheet .mechanika { position: absolute; margin-left: 312px; }
.character-sheet .mechanika .housing { width: 84px; } .character-sheet .mechanika .housing { font-size: 11px; padding-top: 3px; width: 84px; }
.character-sheet .mechanika .runeplate { margin-left: 90px; width: 84px; } .character-sheet .mechanika .runeplate { font-size: 11px; padding-top: 3px; margin-left: 90px; width: 84px; }
.character-sheet .mechanika .capacitor { margin-left: 180px; width: 84px; } .character-sheet .mechanika .capacitor { font-size: 11px; padding-top: 3px; margin-left: 180px; width: 84px; }
.character-sheet .mechanika .notes { margin-left: 270px; width: 84px; } .character-sheet .mechanika .notes { font-size: 11px; padding-top: 3px; margin-left: 270px; width: 84px; }
.character-sheet #mechanika1 { margin-top: 483px; } .character-sheet #mechanika1 { margin-top: 483px; }
.character-sheet #mechanika2 { margin-top: 503px; } .character-sheet #mechanika2 { margin-top: 503px; }
.character-sheet #mechanika3 { margin-top: 523px; } .character-sheet #mechanika3 { margin-top: 523px; }
@ -238,22 +238,22 @@ form#import-export:target { display: block; }
.character-sheet #mechanika5 { margin-top: 563px; } .character-sheet #mechanika5 { margin-top: 563px; }
.character-sheet .iku .runeplate { display: none; } .character-sheet .iku .runeplate { display: none; }
.character-sheet .runeplate { position: absolute; margin-left: 312px; } .character-sheet .runeplate { position: absolute; margin-left: 312px; }
.character-sheet .runeplate .title { width: 84px; } .character-sheet .runeplate .title { font-size: 11px; padding-top: 3px; width: 84px; }
.character-sheet .runeplate .benefit { margin-left: 90px; width: 78px; } .character-sheet .runeplate .benefit { font-size: 11px; padding-top: 3px; margin-left: 90px; width: 78px; }
.character-sheet #runeplate1 { margin-top: 601px; } .character-sheet #runeplate1 { margin-top: 601px; }
.character-sheet #runeplate2 { margin-top: 621px; } .character-sheet #runeplate2 { margin-top: 621px; }
.character-sheet #runeplate3 { margin-top: 641px; } .character-sheet #runeplate3 { margin-top: 641px; }
.character-sheet #runeplate4 { margin-top: 661px; } .character-sheet #runeplate4 { margin-top: 661px; }
.character-sheet .iku .capacitor { display: none; } .character-sheet .iku .capacitor { display: none; }
.character-sheet .capacitor { position: absolute; margin-left: 498px; } .character-sheet .capacitor { position: absolute; margin-left: 498px; }
.character-sheet .capacitor .title { width: 78px; } .character-sheet .capacitor .title { font-size: 11px; padding-top: 3px; width: 78px; }
.character-sheet .capacitor .charges { margin-left: 84px; width: 84px; } .character-sheet .capacitor .charges { font-size: 11px; padding-top: 3px; margin-left: 84px; width: 84px; }
.character-sheet #capacitor1 { margin-top: 601px; } .character-sheet #capacitor1 { margin-top: 601px; }
.character-sheet #capacitor2 { margin-top: 621px; } .character-sheet #capacitor2 { margin-top: 621px; }
.character-sheet #capacitor3 { margin-top: 641px; } .character-sheet #capacitor3 { margin-top: 641px; }
.character-sheet #capacitor4 { margin-top: 661px; } .character-sheet #capacitor4 { margin-top: 661px; }
.character-sheet .note { position: absolute; margin-left: 698px; } .character-sheet .note { position: absolute; margin-left: 698px; }
.character-sheet .note .text { width: 265px; } .character-sheet .note .text { font-size: 11px; padding-top: 3px; width: 265px; }
.character-sheet #note1 { margin-top: 35px; } .character-sheet #note1 { margin-top: 35px; }
.character-sheet #note2 { margin-top: 54px; } .character-sheet #note2 { margin-top: 54px; }
.character-sheet #note3 { margin-top: 73px; } .character-sheet #note3 { margin-top: 73px; }
@ -266,15 +266,15 @@ form#import-export:target { display: block; }
.character-sheet #note10 { margin-top: 204px; } .character-sheet #note10 { margin-top: 204px; }
.character-sheet #note11 { margin-top: 223px; } .character-sheet #note11 { margin-top: 223px; }
.character-sheet #note12 { margin-top: 242px; } .character-sheet #note12 { margin-top: 242px; }
.character-sheet #permanentinjury1 { position: absolute; margin-top: 307px; margin-left: 698px; width: 265px; } .character-sheet #permanentinjury1 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 307px; margin-left: 698px; width: 265px; }
.character-sheet #permanentinjury2 { position: absolute; margin-top: 327px; margin-left: 698px; width: 265px; } .character-sheet #permanentinjury2 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 327px; margin-left: 698px; width: 265px; }
.character-sheet #permanentinjury3 { position: absolute; margin-top: 347px; margin-left: 698px; width: 265px; } .character-sheet #permanentinjury3 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 347px; margin-left: 698px; width: 265px; }
.character-sheet #spokenlanguage1 { position: absolute; margin-top: 408px; margin-left: 698px; width: 265px; } .character-sheet #spokenlanguage1 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 408px; margin-left: 698px; width: 265px; }
.character-sheet #spokenlanguage2 { position: absolute; margin-top: 428px; margin-left: 698px; width: 265px; } .character-sheet #spokenlanguage2 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 428px; margin-left: 698px; width: 265px; }
.character-sheet #spokenlanguage3 { position: absolute; margin-top: 448px; margin-left: 698px; width: 265px; } .character-sheet #spokenlanguage3 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 448px; margin-left: 698px; width: 265px; }
.character-sheet #religiousbelief1 { position: absolute; margin-top: 509px; margin-left: 698px; width: 265px; } .character-sheet #religiousbelief1 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 509px; margin-left: 698px; width: 265px; }
.character-sheet #religiousbelief2 { position: absolute; margin-top: 529px; margin-left: 698px; width: 265px; } .character-sheet #religiousbelief2 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 529px; margin-left: 698px; width: 265px; }
.character-sheet #religiousbelief3 { position: absolute; margin-top: 549px; margin-left: 698px; width: 265px; } .character-sheet #religiousbelief3 { position: absolute; font-size: 11px; padding-top: 3px; margin-top: 549px; margin-left: 698px; width: 265px; }
.character-sheet #gold { position: absolute; margin-top: 610px; margin-left: 698px; font-size: 50px; width: 100px; text-align: right; } .character-sheet #gold { position: absolute; margin-top: 610px; margin-left: 698px; font-size: 50px; width: 100px; text-align: right; }