mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-11 09:32:33 +00:00
============================================== **2023-05-15 ** v.2.3 Paul V Add in the Name of the character/monster into the all the rolls Auto Adding modifiers for Attribute scores Adding modifiers for all dice rolls Added Spells Saving throw to the character sheet Saving Throws. - Auto populating the saving throws with the information from the appropriate attribute (Spells having a drop down for all attributes) Added Spells tab with hooks to the compendium (once the compendium entries are edited - only create water and acid arrow currently work) Add in difficulty base for Stat rolls 12 for Primary 18 for other
3134 lines
84 KiB
CSS
3134 lines
84 KiB
CSS
.charsheet {
|
|
/*background-image: url("http://i.imgur.com/tQiSNgF.png");*/
|
|
background-size: 800px 1500px;
|
|
background-repeat: repeat !important;
|
|
height: 2000px;
|
|
width: 780px;
|
|
}
|
|
|
|
.ui-dialog .charsheet button[type=action]:before {
|
|
font-family: 'dicefontd20';
|
|
content: 't ';
|
|
}
|
|
.ui-dialog .charsheet button[type=action] {
|
|
background: transparent;
|
|
border: none;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
box-shadow: none;
|
|
opacity: 1;
|
|
padding: 0;
|
|
margin: 0;
|
|
outline: none;
|
|
width:25px;
|
|
font-size: 1.2em;
|
|
}
|
|
button[type=action]:hover {
|
|
background-color: #E0E1E2 !important;
|
|
border: 2px solid black;
|
|
border-radius: 10px;
|
|
background-position: 0 -28px;
|
|
text-shadow: 0px 0px 0.2em #6C3306;
|
|
}
|
|
|
|
input[type="number"] {
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
text-align: center;
|
|
}
|
|
input[type=number]::-webkit-inner-spin-button,
|
|
input[type=number]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
button[type=roll] {
|
|
background: transparent;
|
|
border: none;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
box-shadow: none;
|
|
opacity: 1;
|
|
padding: 0;
|
|
margin: 0 5px;
|
|
outline: none;
|
|
}
|
|
button[type=roll]:hover {
|
|
opacity: .5;
|
|
}
|
|
|
|
.charsheet input.short {
|
|
display: inline-block;
|
|
width: 3.5em;
|
|
}
|
|
.charsheet input.long {
|
|
display: inline-block;
|
|
width: 12em;
|
|
}
|
|
.charsheet input.medium {
|
|
display: inline-block;
|
|
width: 5.1em !important;
|
|
}
|
|
|
|
.charsheet input.supertiny {
|
|
display: inline-block;
|
|
width: 10px;
|
|
}
|
|
|
|
.charsheet .bluehilite {
|
|
background-color: #26ADE4;
|
|
color: #000000;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
span {
|
|
font-weight: bold;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
div.sheet-tabstoggle {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: 5px;
|
|
width: calc(100% - 10px);
|
|
}
|
|
div.sheet-tabstoggle input[type="radio"] {
|
|
height: 100%;
|
|
opacity: 0;
|
|
width: 100%;
|
|
z-index: 2;
|
|
}
|
|
div.sheet-tabstoggle label {
|
|
display: grid;
|
|
color: black;
|
|
text-align: center;
|
|
font-size: 1em;
|
|
}
|
|
div.sheet-tabstoggle label input, div.sheet-tabstoggle label span {
|
|
grid-area: 1 / 1 / 1 / 1;
|
|
}
|
|
div.sheet-tabstoggle span {
|
|
background-color: #e9e7e2;
|
|
border-color: black;
|
|
border-width: 1px !important;
|
|
border-style: solid;
|
|
box-shadow: 0 1px 1px #757575;
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
height: 1em;
|
|
padding: 5% 2%;
|
|
}
|
|
|
|
div.sheet-tabstoggle input[type="radio"]:checked + span {
|
|
color: white;
|
|
background-color: #660C0C;
|
|
border-color: white;
|
|
border-style: solid;
|
|
border-width: 1px !important;
|
|
box-shadow: 0 1px 1px #757575;
|
|
}
|
|
|
|
|
|
/*Configure the tab buttons*/
|
|
.sheet-character,
|
|
.sheet-spells,
|
|
.sheet-monster,
|
|
.sheet-journal,
|
|
.sheet-settings {
|
|
display: none;
|
|
}
|
|
|
|
/* show the selected tab */
|
|
.sheet-tabstoggle[value="character"] ~ div.sheet-character,
|
|
.sheet-tabstoggle[value="spells"] ~ div.sheet-spells,
|
|
.sheet-tabstoggle[value="monster"] ~ div.sheet-monster,
|
|
.sheet-tabstoggle[value="journal"] ~ div.sheet-journal,
|
|
.sheet-tabstoggle[value="settings"] ~ div.sheet-settings {
|
|
display: block;
|
|
}
|
|
|
|
div.sheet-charactermain {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
div.sheet-charactercol1 {
|
|
display: grid;
|
|
padding: 2px;
|
|
width: 10%;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(7, 1fr);
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="character_name"] {
|
|
grid-row: 1;
|
|
font-size: 0.9em !important;
|
|
font-weight: bold;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="class"] {
|
|
grid-row: 2;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="race"] {
|
|
grid-row: 3;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="alignment"] {
|
|
grid-row: 4;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="hair"] {
|
|
grid-row: 5;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="eyes"] {
|
|
grid-row: 6;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="age"] {
|
|
grid-row: 7;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol2 {
|
|
display: grid;
|
|
padding: 2px;
|
|
width: 20%;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(7, 1fr);
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="charactername"] {
|
|
grid-row: 1;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="class"] {
|
|
grid-row: 2;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="race"] {
|
|
grid-row: 3;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="alignment"] {
|
|
grid-row: 4;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="hair"] {
|
|
grid-row: 5;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="eyes"] {
|
|
grid-row: 6;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="age"] {
|
|
grid-row: 7;
|
|
font-size: 0.9em !important;
|
|
}
|
|
|
|
div.sheet-charactercol3 {
|
|
display: grid;
|
|
padding: 2px;
|
|
width: 10%;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(7, 1fr);
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="level"] {
|
|
grid-row: 1;
|
|
font-size: 0.9em !important;
|
|
font-weight: bold !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="experience"] {
|
|
grid-row: 2;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="nextlevel"] {
|
|
grid-row: 3;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="movement"] {
|
|
grid-row: 4;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="height"] {
|
|
grid-row: 5;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="weight"] {
|
|
grid-row: 6;
|
|
font-size: 0.9em !important;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="deity"] {
|
|
grid-row: 7;
|
|
font-size: 0.9em !important;
|
|
}
|
|
|
|
div.sheet-charactercol4 {
|
|
display: grid;
|
|
padding: 2px;
|
|
width: 10%;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(7, 1fr);
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="level"] {
|
|
grid-row: 1;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="experience"] {
|
|
grid-row: 2;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="nextlevel"] {
|
|
grid-row: 3;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="movement"] {
|
|
grid-row: 4;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="height"] {
|
|
grid-row: 5;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="weight"] {
|
|
grid-row: 6;
|
|
}
|
|
div.sheet-charactercol1 span[data-i18n-title="deity"] {
|
|
grid-row: 7;
|
|
}
|
|
|
|
div.sheet-Languages {
|
|
}
|
|
div.sheet-Languages span[data-i18n="Languages"] {
|
|
position:absolute;left:32px;top:351px;
|
|
}
|
|
div.sheet-Languages input {
|
|
position:absolute;left:32px;top:376px;
|
|
width: 370px !important;
|
|
}
|
|
|
|
div.sheet-TurnUndeadTitle {
|
|
position:absolute;left:32px;top:420px;
|
|
background-color: #660C0C;
|
|
color: white;
|
|
width: 370px;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
}
|
|
div.sheet-TurnUndeadTitle span{
|
|
padding-left: 144px;
|
|
padding-right: 145px;
|
|
background-color: #660C0C;
|
|
color: white;
|
|
}
|
|
|
|
div.sheet-TurnUndeadTitles {
|
|
position:absolute;left:32px;top:440px;
|
|
background-color: #660C0C;
|
|
color: white;
|
|
width: 370px;
|
|
}
|
|
div.sheet-TurnUndeadTitles span{
|
|
background-color: #660C0C;
|
|
}
|
|
div.sheet-TurnUndeadTitles span[data-i18n="Turning Check"]{
|
|
position:absolute;left:0px;top:0px;
|
|
width: 240px;
|
|
}
|
|
div.sheet-TurnUndeadTitles span[data-i18n="Success Roll"]{
|
|
position:absolute;left:240px;top:0px;
|
|
width: 60px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-TurnUndeadTitles span[data-i18n="# Turned"]{
|
|
position:absolute;left:300px;top:0px;
|
|
width: 70px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-TurnUndeadTitles span[data-i18n="blank"]{
|
|
position:absolute;left:0px;top:20px;
|
|
width: 240px;
|
|
height: 17px;
|
|
}
|
|
div.sheet-TurnUndeadTitles span[data-i18n="blank2"]{
|
|
position:absolute;left:300px;top:20px;
|
|
width: 70px;
|
|
height: 17px;
|
|
}
|
|
|
|
div.sheet-TurnUndead {
|
|
}
|
|
div.sheet-TurnUndead input{
|
|
position:absolute;left:32px;top:482px;
|
|
}
|
|
div.sheet-TurnUndead button[name="Turning Undead"]{
|
|
position:absolute;left:290px;top:482px;
|
|
}
|
|
div.sheet-TurnUndead button[name="Common Undead"]{
|
|
position:absolute;left:360px;top:482px;
|
|
}
|
|
div.sheet-Initiative {
|
|
}
|
|
div.sheet-Initiative span{
|
|
position:absolute;left:32px;top:512px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-Initiative button{
|
|
position:absolute;left:92px;top:522px;
|
|
}
|
|
|
|
div.sheet-ArmorTitle {
|
|
position:absolute;left:32px;top:560px;
|
|
color: white;
|
|
width: 370px;
|
|
}
|
|
div.sheet-ArmorTitle span{
|
|
text-align: center !important;
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
}
|
|
div.sheet-ArmorTitle span[data-i18n="Armor"]{
|
|
position:absolute;left:0px;top:0px;
|
|
width: 240px;
|
|
}
|
|
div.sheet-ArmorTitle span[data-i18n="Hit Points"]{
|
|
position:absolute;left:240px;top:0px;
|
|
width: 130px;
|
|
}
|
|
|
|
div.sheet-Armor {
|
|
}
|
|
div.sheet-Armor span[data-i18n="Armor"]{
|
|
position:absolute;left:32px;top:585px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-Armor input[data-i18n-placeholder="Armor Worn"]{
|
|
position:absolute;left:92px;top:585px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-Armor input[data-i18n-placeholder="HP"]{
|
|
position:absolute;left:290px;top:585px;
|
|
}
|
|
div.sheet-Armor span[data-i18n="/"]{
|
|
position:absolute;left:340px;top:585px;
|
|
}
|
|
div.sheet-Armor input[data-i18n-placeholder="HPmax"]{
|
|
position:absolute;left:345px;top:585px;
|
|
}
|
|
|
|
div.sheet-Shield {
|
|
}
|
|
div.sheet-Shield span{
|
|
position:absolute;left:32px;top:612px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-Shield input{
|
|
position:absolute;left:92px;top:612px;
|
|
width: 180px;
|
|
}
|
|
|
|
div.sheet-Helm {
|
|
}
|
|
div.sheet-Helm span{
|
|
position:absolute;left:32px;top:639px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-Helm input{
|
|
position:absolute;left:92px;top:639px;
|
|
width: 180px;
|
|
}
|
|
|
|
div.sheet-ACTitle {
|
|
}
|
|
div.sheet-ACTitle span{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
}
|
|
div.sheet-ACTitle span[data-i18n="AC"]{
|
|
position:absolute;left:32px;top:666px;
|
|
width: 120px;
|
|
}
|
|
div.sheet-ACTitle span[data-i18n="Armor"]{
|
|
position:absolute;left:145px;top:666px;
|
|
width: 50px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-ACTitle span[data-i18n="Shield"]{
|
|
position:absolute;left:195px;top:666px;
|
|
width: 50px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-ACTitle span[data-i18n="mod"]{
|
|
position:absolute;left:245px;top:666px;
|
|
width: 50px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-ACTitle span[data-i18n="Magic"]{
|
|
position:absolute;left:295px;top:666px;
|
|
width: 50px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-ACTitle span[data-i18n="Misc"]{
|
|
position:absolute;left:345px;top:666px;
|
|
width: 50px;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-AC {
|
|
}
|
|
div.sheet-AC input[name="attr_AC"]{
|
|
position:absolute;left:32px;top:693px;
|
|
}
|
|
div.sheet-AC span[data-i18n="= 10 +"]{
|
|
position:absolute;left:92px;top:693px;
|
|
}
|
|
div.sheet-AC input[data-i18n-placeholder="ArmorAC"]{
|
|
position:absolute;left:145px;top:693px;
|
|
}
|
|
div.sheet-AC input[data-i18n-placeholder="ShieldAC"]{
|
|
position:absolute;left:195px;top:693px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-AC input[data-i18n-placeholder="ModAC"]{
|
|
position:absolute;left:245px;top:693px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-AC input[data-i18n-placeholder="MagicAC"]{
|
|
position:absolute;left:295px;top:693px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-AC input[data-i18n-placeholder="MiscAC"]{
|
|
position:absolute;left:345px;top:693px;
|
|
width: 50px;
|
|
}
|
|
|
|
|
|
div.sheet-characterlogo {
|
|
padding: 2px;
|
|
width: 50%;
|
|
}
|
|
div.sheet-characterlogo label[data-i18n-title="characterlogo"] {
|
|
position:absolute;left:500px;top:62px;
|
|
width: 240px;
|
|
height: 120px;
|
|
}
|
|
div.sheet-characterlogo span[data-i18n="attributes"]{
|
|
position:absolute;left:478px;top:227px;
|
|
}
|
|
div.sheet-characterlogo span[data-i18n="(attribute check: d20 + lvl + mod)"]{
|
|
position:absolute;left:589px;top:227px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
|
|
div.sheet-characterheading {
|
|
background-color: #660C0C;
|
|
color: white;
|
|
position:absolute;left:478px;top:251px;
|
|
}
|
|
div.sheet-characterheading span[data-i18n="check"]{
|
|
padding-right: 8px;
|
|
}
|
|
div.sheet-characterheading span[data-i18n="pri sec ter"]{
|
|
font-size: 0.8em;
|
|
padding-right: 92px;
|
|
}
|
|
div.sheet-characterheading span[data-i18n="score"]{
|
|
padding-right: 20px;
|
|
}
|
|
div.sheet-characterheading span[data-i18n="mod"]{
|
|
padding-right: 15px;
|
|
}
|
|
|
|
div.sheet-PhysicalStats{
|
|
position:absolute;left:445px;top:296px;
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
div.sheet-MentalStats{
|
|
position:absolute;left:450px;top:388px;
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
div.sheet-constitution {
|
|
position:absolute;left:478px;top:271px;
|
|
}
|
|
div.sheet-constitution button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-constitution label[data-i18n-title="constitutionpri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-constitution label[data-i18n-title="constitutionsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-constitution label[data-i18n-title="constitutionter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-constitution span[data-i18n="constitution"]{
|
|
position:absolute;left:116px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-constitution input[data-i18n-placeholder="constitution"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-constitution input[data-i18n-placeholder="conmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-strength {
|
|
position:absolute;left:478px;top:301px;
|
|
}
|
|
div.sheet-strength button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-strength label[data-i18n-title="strengthpri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-strength label[data-i18n-title="strengthsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-strength label[data-i18n-title="strengthter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-strength span[data-i18n="strength"]{
|
|
position:absolute;left:125px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-strength input[data-i18n-placeholder="strength"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-strength input[data-i18n-placeholder="strmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-dexterity {
|
|
position:absolute;left:478px;top:331px;
|
|
}
|
|
div.sheet-dexterity button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-dexterity label[data-i18n-title="dexteritypri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-dexterity label[data-i18n-title="dexteritysec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-dexterity label[data-i18n-title="dexterityter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-dexterity span[data-i18n="dexterity"]{
|
|
position:absolute;left:125px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-dexterity input[data-i18n-placeholder="dexterity"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-dexterity input[data-i18n-placeholder="dexmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-charisma {
|
|
position:absolute;left:478px;top:361px;
|
|
}
|
|
div.sheet-charisma button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-charisma label[data-i18n-title="charismapri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-charisma label[data-i18n-title="charismasec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-charisma label[data-i18n-title="charismater"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-charisma span[data-i18n="charisma"]{
|
|
position:absolute;left:124px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-charisma input[data-i18n-placeholder="charisma"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-charisma input[data-i18n-placeholder="chamod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-intelligence {
|
|
position:absolute;left:478px;top:391px;
|
|
}
|
|
div.sheet-intelligence button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-intelligence label[data-i18n-title="intelligencepri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-intelligence label[data-i18n-title="intelligencesec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-intelligence label[data-i18n-title="intelligenceter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-intelligence span[data-i18n="intelligence"]{
|
|
position:absolute;left:116px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-intelligence input[data-i18n-placeholder="intelligence"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-intelligence input[data-i18n-placeholder="intmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-wisdom {
|
|
position:absolute;left:478px;top:421px;
|
|
}
|
|
div.sheet-wisdom button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-wisdom label[data-i18n-title="wisdompri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-wisdom label[data-i18n-title="wisdomsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-wisdom label[data-i18n-title="wisdomter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-wisdom span[data-i18n="wisdom"]{
|
|
position:absolute;left:126px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-wisdom input[data-i18n-placeholder="wisdom"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-wisdom input[data-i18n-placeholder="wismod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
|
|
div.sheet-charactersaves {
|
|
padding: 2px;
|
|
width: 50%;
|
|
}
|
|
div.sheet-charactersaves span[data-i18n="savingthrows"]{
|
|
position:absolute;left:478px;top:446px;
|
|
}
|
|
div.sheet-charactersaves span[data-i18n="(attribute check: d20 + lvl + mod)"]{
|
|
position:absolute;left:589px;top:446px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
|
|
div.sheet-charactersaveheading {
|
|
background-color: #660C0C;
|
|
color: white;
|
|
position:absolute;left:478px;top:471px;
|
|
}
|
|
div.sheet-charactersaveheading span[data-i18n="check"]{
|
|
padding-right: 2px;
|
|
}
|
|
div.sheet-charactersaveheading span[data-i18n="save type"]{
|
|
padding-right: 2px;
|
|
}
|
|
div.sheet-charactersaveheading span[data-i18n="mod"]{
|
|
padding-right: 8px;
|
|
}
|
|
div.sheet-charactersaveheading span[data-i18n="check2"]{
|
|
padding-right: 2px;
|
|
}
|
|
div.sheet-charactersaveheading span[data-i18n="save type2"]{
|
|
padding-right: 2px;
|
|
}
|
|
div.sheet-charactersaveheading span[data-i18n="mod2"]{
|
|
padding-right: 8px;
|
|
}
|
|
|
|
div.sheet-paralysissave{
|
|
}
|
|
div.sheet-paralysissave button{
|
|
position:absolute;left:483px;top:491px;
|
|
}
|
|
div.sheet-paralysissave span{
|
|
position:absolute;left:515px;top:491px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-paralysissave input{
|
|
position:absolute;left:592px;top:491px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-constrictionsave{
|
|
}
|
|
div.sheet-constrictionsave button{
|
|
position:absolute;left:638px;top:491px;
|
|
}
|
|
div.sheet-constrictionsave span{
|
|
position:absolute;left:670px;top:491px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-constrictionsave input{
|
|
position:absolute;left:747px;top:491px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-breathweaponsave{
|
|
}
|
|
div.sheet-breathweaponsave button{
|
|
position:absolute;left:483px;top:521px;
|
|
}
|
|
div.sheet-breathweaponsave span{
|
|
position:absolute;left:515px;top:521px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-breathweaponsave input{
|
|
position:absolute;left:592px;top:521px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-trapssave{
|
|
}
|
|
div.sheet-trapssave button{
|
|
position:absolute;left:638px;top:521px;
|
|
}
|
|
div.sheet-trapssave span{
|
|
position:absolute;left:670px;top:521px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-trapssave input{
|
|
position:absolute;left:747px;top:521px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-diseasesave{
|
|
}
|
|
div.sheet-diseasesave button{
|
|
position:absolute;left:483px;top:551px;
|
|
}
|
|
div.sheet-diseasesave span{
|
|
position:absolute;left:515px;top:551px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-diseasesave input{
|
|
position:absolute;left:592px;top:551px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-poisonsave{
|
|
}
|
|
div.sheet-poisonsave button{
|
|
position:absolute;left:638px;top:551px;
|
|
}
|
|
div.sheet-poisonsave span{
|
|
position:absolute;left:670px;top:551px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-poisonsave input{
|
|
position:absolute;left:747px;top:551px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-arcanemagicsave{
|
|
}
|
|
div.sheet-arcanemagicsave button{
|
|
position:absolute;left:483px;top:581px;
|
|
}
|
|
div.sheet-arcanemagicsave span{
|
|
position:absolute;left:515px;top:581px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-arcanemagicsave input{
|
|
position:absolute;left:592px;top:581px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-illusionsave{
|
|
}
|
|
div.sheet-illusionsave button{
|
|
position:absolute;left:638px;top:581px;
|
|
}
|
|
div.sheet-illusionsave span{
|
|
position:absolute;left:670px;top:581px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-illusionsave input{
|
|
position:absolute;left:747px;top:581px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-confusionsave{
|
|
}
|
|
div.sheet-confusionsave button{
|
|
position:absolute;left:483px;top:611px;
|
|
}
|
|
div.sheet-confusionsave span{
|
|
position:absolute;left:515px;top:611px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-confusionsave input{
|
|
position:absolute;left:592px;top:611px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-divinemagicsave{
|
|
}
|
|
div.sheet-divinemagicsave button{
|
|
position:absolute;left:638px;top:611px;
|
|
}
|
|
div.sheet-divinemagicsave span{
|
|
position:absolute;left:670px;top:611px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-divinemagicsave input{
|
|
position:absolute;left:747px;top:611px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-gazeattacksave{
|
|
}
|
|
div.sheet-gazeattacksave button{
|
|
position:absolute;left:483px;top:641px;
|
|
}
|
|
div.sheet-gazeattacksave span{
|
|
position:absolute;left:515px;top:641px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-gazeattacksave input{
|
|
position:absolute;left:592px;top:641px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-petrificationsave{
|
|
}
|
|
div.sheet-petrificationsave button{
|
|
position:absolute;left:638px;top:641px;
|
|
}
|
|
div.sheet-petrificationsave span{
|
|
position:absolute;left:670px;top:641px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-petrificationsave input{
|
|
position:absolute;left:747px;top:641px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-deathattacksave{
|
|
}
|
|
div.sheet-deathattacksave button{
|
|
position:absolute;left:483px;top:671px;
|
|
}
|
|
div.sheet-deathattacksave span{
|
|
position:absolute;left:515px;top:671px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-deathattacksave input{
|
|
position:absolute;left:592px;top:671px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-charmsave{
|
|
}
|
|
div.sheet-charmsave button{
|
|
position:absolute;left:638px;top:671px;
|
|
}
|
|
div.sheet-charmsave span{
|
|
position:absolute;left:670px;top:671px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-charmsave input{
|
|
position:absolute;left:747px;top:671px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-fearsave{
|
|
}
|
|
div.sheet-fearsave button{
|
|
position:absolute;left:483px;top:701px;
|
|
}
|
|
div.sheet-fearsave span{
|
|
position:absolute;left:515px;top:701px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-fearsave input{
|
|
position:absolute;left:592px;top:701px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-energydrainsave{
|
|
}
|
|
div.sheet-energydrainsave button{
|
|
position:absolute;left:638px;top:701px;
|
|
}
|
|
div.sheet-energydrainsave span{
|
|
position:absolute;left:670px;top:701px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-energydrainsave input{
|
|
position:absolute;left:747px;top:701px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-polymorphsave{
|
|
}
|
|
div.sheet-polymorphsave button{
|
|
position:absolute;left:483px;top:731px;
|
|
}
|
|
div.sheet-polymorphsave span{
|
|
position:absolute;left:515px;top:731px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-polymorphsave input{
|
|
position:absolute;left:592px;top:731px;
|
|
width: 35px !important;
|
|
}
|
|
div.sheet-spellssave{
|
|
}
|
|
div.sheet-spellssave button{
|
|
position:absolute;left:638px;top:731px;
|
|
}
|
|
div.sheet-spellssave span{
|
|
position:absolute;left:670px;top:731px;
|
|
font-size: 0.8em;
|
|
}
|
|
div.sheet-spellssave input{
|
|
position:absolute;left:747px;top:731px;
|
|
width: 35px !important;
|
|
}
|
|
|
|
div.sheet-characterweaponheading {
|
|
}
|
|
div.sheet-characterweaponheading span{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Weapons"]{
|
|
position:absolute;left:32px;top:766px;
|
|
width: 120px;
|
|
color: black !important;
|
|
background-color: transparent;
|
|
border-bottom: none;
|
|
text-align: left;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="HitDmg"]{
|
|
position:absolute;left:32px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="name"]{
|
|
position:absolute;left:92px;top:790px;
|
|
width: 190px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="BtH"]{
|
|
position:absolute;left:277px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="mod"]{
|
|
position:absolute;left:330px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Misc"]{
|
|
position:absolute;left:385px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Magic"]{
|
|
position:absolute;left:442px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Total"]{
|
|
position:absolute;left:492px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="|"]{
|
|
position:absolute;left:542px;top:790px;
|
|
width: 20px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Dmg"]{
|
|
position:absolute;left:552px;top:790px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="mod2"]{
|
|
position:absolute;left:607px;top:790px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Misc2"]{
|
|
position:absolute;left:657px;top:790px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Magic2"]{
|
|
position:absolute;left:707px;top:790px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweaponheading span[data-i18n="Total2"]{
|
|
position:absolute;left:757px;top:790px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 {
|
|
}
|
|
div.sheet-characterweapon1 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterweapon1 button[name="roll_WeaponOne"]{
|
|
position:absolute;left:42px;top:817px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponName"]{
|
|
position:absolute;left:92px;top:817px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponBth"]{
|
|
position:absolute;left:282px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponHitMod"]{
|
|
position:absolute;left:337px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponHitMisc"]{
|
|
position:absolute;left:392px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponHitMagic"]{
|
|
position:absolute;left:447px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponHitTotal"]{
|
|
position:absolute;left:502px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponDmg"]{
|
|
position:absolute;left:557px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponMod"]{
|
|
position:absolute;left:612px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponMisc"]{
|
|
position:absolute;left:662px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponMagic"]{
|
|
position:absolute;left:712px;top:817px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon1 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:817px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon1 input[data-i18n-placeholder="WeaponTotal"]{
|
|
position:absolute;left:762px;top:817px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-characterweapon2 {
|
|
}
|
|
div.sheet-characterweapon2 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterweapon2 button[name="roll_WeaponTwo"]{
|
|
position:absolute;left:42px;top:844px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponName"]{
|
|
position:absolute;left:92px;top:844px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponBth"]{
|
|
position:absolute;left:282px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponHitMod"]{
|
|
position:absolute;left:337px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponHitMisc"]{
|
|
position:absolute;left:392px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponHitMagic"]{
|
|
position:absolute;left:447px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponHitTotal"]{
|
|
position:absolute;left:502px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponDmg"]{
|
|
position:absolute;left:557px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponMod"]{
|
|
position:absolute;left:612px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponMisc"]{
|
|
position:absolute;left:662px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponMagic"]{
|
|
position:absolute;left:712px;top:844px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon2 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:844px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon2 input[data-i18n-placeholder="WeaponTotal"]{
|
|
position:absolute;left:762px;top:844px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-characterweapon3 {
|
|
}
|
|
div.sheet-characterweapon3 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterweapon3 button[name="roll_WeaponThree"]{
|
|
position:absolute;left:42px;top:871px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponName"]{
|
|
position:absolute;left:92px;top:871px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponBth"]{
|
|
position:absolute;left:282px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponHitMod"]{
|
|
position:absolute;left:337px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponHitMisc"]{
|
|
position:absolute;left:392px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponHitMagic"]{
|
|
position:absolute;left:447px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponHitTotal"]{
|
|
position:absolute;left:502px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponDmg"]{
|
|
position:absolute;left:557px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponMod"]{
|
|
position:absolute;left:612px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponMisc"]{
|
|
position:absolute;left:662px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponMagic"]{
|
|
position:absolute;left:712px;top:871px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon3 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:871px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon3 input[data-i18n-placeholder="WeaponTotal"]{
|
|
position:absolute;left:762px;top:871px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-characterweapon4 {
|
|
}
|
|
div.sheet-characterweapon4 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterweapon4 button[name="roll_WeaponFour"]{
|
|
position:absolute;left:42px;top:898px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponName"]{
|
|
position:absolute;left:92px;top:898px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponBth"]{
|
|
position:absolute;left:282px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponHitMod"]{
|
|
position:absolute;left:337px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponHitMisc"]{
|
|
position:absolute;left:392px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponHitMagic"]{
|
|
position:absolute;left:447px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponHitTotal"]{
|
|
position:absolute;left:502px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponDmg"]{
|
|
position:absolute;left:557px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponMod"]{
|
|
position:absolute;left:612px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponMisc"]{
|
|
position:absolute;left:662px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponMagic"]{
|
|
position:absolute;left:712px;top:898px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon4 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:898px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon4 input[data-i18n-placeholder="WeaponTotal"]{
|
|
position:absolute;left:762px;top:898px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-characterweapon5 {
|
|
}
|
|
div.sheet-characterweapon5 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterweapon5 button[name="roll_WeaponFive"]{
|
|
position:absolute;left:42px;top:925px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponName"]{
|
|
position:absolute;left:92px;top:925px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponBth"]{
|
|
position:absolute;left:282px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponHitMod"]{
|
|
position:absolute;left:337px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponHitMisc"]{
|
|
position:absolute;left:392px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponHitMagic"]{
|
|
position:absolute;left:447px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponHitTotal"]{
|
|
position:absolute;left:502px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponDmg"]{
|
|
position:absolute;left:557px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponMod"]{
|
|
position:absolute;left:612px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponMisc"]{
|
|
position:absolute;left:662px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponMagic"]{
|
|
position:absolute;left:712px;top:925px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterweapon5 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:925px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterweapon5 input[data-i18n-placeholder="WeaponTotal"]{
|
|
position:absolute;left:762px;top:925px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-characterskillsheading {
|
|
}
|
|
div.sheet-characterskillsheading span{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
text-align: center;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="Class and Race Skills"]{
|
|
position:absolute;left:32px;top:952px;
|
|
width: 140px;
|
|
color: black !important;
|
|
background-color: transparent;
|
|
border-bottom: none;
|
|
text-align: left;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="Roll"]{
|
|
position:absolute;left:32px;top:979px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="name"]{
|
|
position:absolute;left:92px;top:979px;
|
|
width: 310px;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="Attr"]{
|
|
position:absolute;left:397px;top:979px;
|
|
width: 200px;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="AttrBonus"]{
|
|
position:absolute;left:597px;top:979px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="Misc"]{
|
|
position:absolute;left:657px;top:979px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="Magic"]{
|
|
position:absolute;left:707px;top:979px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskillsheading span[data-i18n="Total"]{
|
|
position:absolute;left:757px;top:979px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-characterskills1 {
|
|
}
|
|
div.sheet-characterskills1 button{
|
|
position:absolute;left:32px;top:1006px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills1 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1006px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills1 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1006px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills1 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1006px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills1 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1006px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills1 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1006px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills1 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1006px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills1 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1006px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills1 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1006px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills1 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1006px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills2 {
|
|
}
|
|
div.sheet-characterskills2 button{
|
|
position:absolute;left:32px;top:1033px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills2 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1033px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills2 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1033px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills2 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1033px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills2 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1033px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills2 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1033px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills2 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1033px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills2 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1033px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills2 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1033px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills2 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1033px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills3 {
|
|
}
|
|
div.sheet-characterskills3 button{
|
|
position:absolute;left:32px;top:1060px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills3 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1060px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills3 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1060px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills3 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1060px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills3 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1060px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills3 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1060px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills3 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1060px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills3 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1060px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills3 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1060px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills3 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1060px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills4 {
|
|
}
|
|
div.sheet-characterskills4 button{
|
|
position:absolute;left:32px;top:1087px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills4 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1087px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills4 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1087px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills4 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1087px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills4 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1087px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills4 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1087px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills4 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1087px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills4 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1087px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills4 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1087px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills4 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1087px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills5 {
|
|
}
|
|
div.sheet-characterskills5 button{
|
|
position:absolute;left:32px;top:1114px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills5 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1114px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills5 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1114px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills5 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1114px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills5 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1114px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills5 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1114px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills5 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1114px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills5 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1114px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills5 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1114px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills5 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1114px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills6 {
|
|
}
|
|
div.sheet-characterskills6 button{
|
|
position:absolute;left:32px;top:1141px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills6 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1141px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills6 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1141px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills6 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1141px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills6 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1141px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills6 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1141px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills6 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1141px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills6 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1141px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills6 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1141px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills6 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1141px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills7 {
|
|
}
|
|
div.sheet-characterskills7 button{
|
|
position:absolute;left:32px;top:1168px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills7 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1168px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills7 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1168px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills7 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1168px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills7 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1168px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills7 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1168px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills7 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1168px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills7 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1168px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills7 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1168px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills7 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1168px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills8 {
|
|
}
|
|
div.sheet-characterskills8 button{
|
|
position:absolute;left:32px;top:1195px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills8 input[data-i18n-placeholder="SkillName"]{
|
|
position:absolute;left:92px;top:1195px;
|
|
width: 290px;
|
|
}
|
|
div.sheet-characterskills8 select[data-i18n-placeholder="Attribute"]{
|
|
position:absolute;left:397px;top:1195px;
|
|
width: 180px;
|
|
}
|
|
div.sheet-characterskills8 input[data-i18n-placeholder="AttrBonus"]{
|
|
position:absolute;left:597px;top:1195px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-characterskills8 span[data-i18n="+"]{
|
|
position:absolute;left:650px;top:1195px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills8 input[data-i18n-placeholder="MiscBonus"]{
|
|
position:absolute;left:657px;top:1195px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills8 span[data-i18n="+2"]{
|
|
position:absolute;left:701px;top:1195px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills8 input[data-i18n-placeholder="MagicBonus"]{
|
|
position:absolute;left:707px;top:1195px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-characterskills8 span[data-i18n="="]{
|
|
position:absolute;left:750px;top:1195px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-characterskills8 input[data-i18n-placeholder="Total"]{
|
|
position:absolute;left:757px;top:1195px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-classabilities {
|
|
position:absolute;left:32px;top:1222px;
|
|
}
|
|
div.sheet-classabilities label[data-i18n-title="repeatingclassability"] > input[type="text"] {
|
|
width: 100%;
|
|
}
|
|
div.sheet-classabilities label[data-i18n-title="repeatinginventory"] > input[type="text"] {
|
|
width: 100%;
|
|
}
|
|
div.sheet-racialspell {
|
|
position:absolute;left:332px;top:1222px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
div.sheet-racialspell span[data-i18n="Spell / Level / Memorize"]{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
text-align: center;
|
|
}
|
|
div.sheet-racialspell label[data-i18n-title="repeatingraceability"] > input[type="text"] {
|
|
width: 100%;
|
|
}
|
|
div.sheet-racialspell label[data-i18n-title="repeatingspells"] > input[data-i18n-placeholder="Spells"] {
|
|
width: 150px !important;
|
|
}
|
|
|
|
div.sheet-spelltitles {
|
|
}
|
|
div.sheet-spelltitles span{
|
|
font-size: 1em !important;
|
|
text-align: center !important;
|
|
}
|
|
div.sheet-spelltitles span{
|
|
position:absolute;left:602px;top:1222px;
|
|
width: 200px;
|
|
}
|
|
|
|
div.sheet-spellsubtitles {
|
|
/*position:absolute;left:602px;top:1249px;*/
|
|
}
|
|
|
|
div.sheet-spellsubtitles span {
|
|
font-size: 1em !important;
|
|
background-color: #660C0C;
|
|
color: white;
|
|
text-align: center;
|
|
height: 40px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spellsubtitles span[data-i18n="level"]{
|
|
position:absolute;left:602px;top:1249px;
|
|
}
|
|
div.sheet-spellsubtitles span[data-i18n="#Spells"]{
|
|
position:absolute;left:652px;top:1249px;
|
|
}
|
|
div.sheet-spellsubtitles span[data-i18n="Bonus Spells"]{
|
|
position:absolute;left:702px;top:1249px;
|
|
}
|
|
div.sheet-spellsubtitles span[data-i18n="Total"]{
|
|
position:absolute;left:752px;top:1249px;
|
|
}
|
|
|
|
div.sheet-spell0 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell0 span[data-i18n="0th"]{
|
|
position:absolute;left:602px;top:1295px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell0 input[data-i18n-placeholder="numspells_0"]{
|
|
position:absolute;left:652px;top:1295px;
|
|
}
|
|
div.sheet-spell0 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1295px;
|
|
}
|
|
div.sheet-spell0 input[data-i18n-placeholder="bonusspells_0"]{
|
|
position:absolute;left:702px;top:1295px;
|
|
}
|
|
div.sheet-spell0 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1295px;
|
|
}
|
|
div.sheet-spell0 input[data-i18n-placeholder="total_spells_0"]{
|
|
position:absolute;left:752px;top:1295px;
|
|
}
|
|
div.sheet-spell1 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell1 span[data-i18n="1st"]{
|
|
position:absolute;left:602px;top:1326px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell1 input[data-i18n-placeholder="numspells_1"]{
|
|
position:absolute;left:652px;top:1326px;
|
|
}
|
|
div.sheet-spell1 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1326px;
|
|
}
|
|
div.sheet-spell1 input[data-i18n-placeholder="bonusspells_1"]{
|
|
position:absolute;left:702px;top:1326px;
|
|
}
|
|
div.sheet-spell1 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1326px;
|
|
}
|
|
div.sheet-spell1 input[data-i18n-placeholder="total_spells_1"]{
|
|
position:absolute;left:752px;top:1326px;
|
|
}
|
|
div.sheet-spell2 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell2 span[data-i18n="2nd"]{
|
|
position:absolute;left:602px;top:1357px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell2 input[data-i18n-placeholder="numspells_2"]{
|
|
position:absolute;left:652px;top:1357px;
|
|
}
|
|
div.sheet-spell2 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1357px;
|
|
}
|
|
div.sheet-spell2 input[data-i18n-placeholder="bonusspells_2"]{
|
|
position:absolute;left:702px;top:1357px;
|
|
}
|
|
div.sheet-spell2 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1357px;
|
|
}
|
|
div.sheet-spell2 input[data-i18n-placeholder="total_spells_2"]{
|
|
position:absolute;left:752px;top:1357px;
|
|
}
|
|
div.sheet-spell3 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell3 span[data-i18n="3rd"]{
|
|
position:absolute;left:602px;top:1387px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell3 input[data-i18n-placeholder="numspells_3"]{
|
|
position:absolute;left:652px;top:1387px;
|
|
}
|
|
div.sheet-spell3 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1387px;
|
|
}
|
|
div.sheet-spell3 input[data-i18n-placeholder="bonusspells_3"]{
|
|
position:absolute;left:702px;top:1387px;
|
|
}
|
|
div.sheet-spell3 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1387px;
|
|
}
|
|
div.sheet-spell3 input[data-i18n-placeholder="total_spells_3"]{
|
|
position:absolute;left:752px;top:1387px;
|
|
}
|
|
div.sheet-spell4 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell4 span[data-i18n="4th"]{
|
|
position:absolute;left:602px;top:1418px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell4 input[data-i18n-placeholder="numspells_4"]{
|
|
position:absolute;left:652px;top:1418px;
|
|
}
|
|
div.sheet-spell4 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1418px;
|
|
}
|
|
div.sheet-spell4 input[data-i18n-placeholder="bonusspells_4"]{
|
|
position:absolute;left:702px;top:1418px;
|
|
}
|
|
div.sheet-spell4 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1418px;
|
|
}
|
|
div.sheet-spell4 input[data-i18n-placeholder="total_spells_4"]{
|
|
position:absolute;left:752px;top:1418px;
|
|
}
|
|
div.sheet-spell5 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell5 span[data-i18n="5th"]{
|
|
position:absolute;left:602px;top:1449px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell5 input[data-i18n-placeholder="numspells_5"]{
|
|
position:absolute;left:652px;top:1449px;
|
|
}
|
|
div.sheet-spell5 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1449px;
|
|
}
|
|
div.sheet-spell5 input[data-i18n-placeholder="bonusspells_5"]{
|
|
position:absolute;left:702px;top:1449px;
|
|
}
|
|
div.sheet-spell5 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1449px;
|
|
}
|
|
div.sheet-spell5 input[data-i18n-placeholder="total_spells_5"]{
|
|
position:absolute;left:752px;top:1449px;
|
|
}
|
|
div.sheet-spell6 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell6 span[data-i18n="6th"]{
|
|
position:absolute;left:602px;top:1480px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell6 input[data-i18n-placeholder="numspells_6"]{
|
|
position:absolute;left:652px;top:1480px;
|
|
}
|
|
div.sheet-spell6 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1480px;
|
|
}
|
|
div.sheet-spell6 input[data-i18n-placeholder="bonusspells_6"]{
|
|
position:absolute;left:702px;top:1480px;
|
|
}
|
|
div.sheet-spell6 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1480px;
|
|
}
|
|
div.sheet-spell6 input[data-i18n-placeholder="total_spells_6"]{
|
|
position:absolute;left:752px;top:1480px;
|
|
}
|
|
div.sheet-spell7 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell7 span[data-i18n="7th"]{
|
|
position:absolute;left:602px;top:1511px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell7 input[data-i18n-placeholder="numspells_7"]{
|
|
position:absolute;left:652px;top:1511px;
|
|
}
|
|
div.sheet-spell7 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1511px;
|
|
}
|
|
div.sheet-spell7 input[data-i18n-placeholder="bonusspells_7"]{
|
|
position:absolute;left:702px;top:1511px;
|
|
}
|
|
div.sheet-spell7 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1511px;
|
|
}
|
|
div.sheet-spell7 input[data-i18n-placeholder="total_spells_7"]{
|
|
position:absolute;left:752px;top:1511px;
|
|
}
|
|
div.sheet-spell8 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell8 span[data-i18n="8th"]{
|
|
position:absolute;left:602px;top:1542px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell8 input[data-i18n-placeholder="numspells_8"]{
|
|
position:absolute;left:652px;top:1542px;
|
|
}
|
|
div.sheet-spell8 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1542px;
|
|
}
|
|
div.sheet-spell8 input[data-i18n-placeholder="bonusspells_8"]{
|
|
position:absolute;left:702px;top:1542px;
|
|
}
|
|
div.sheet-spell8 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1542px;
|
|
}
|
|
div.sheet-spell8 input[data-i18n-placeholder="total_spells_8"]{
|
|
position:absolute;left:752px;top:1542px;
|
|
}
|
|
div.sheet-spell9 span {
|
|
font-size: 1em !important;
|
|
}
|
|
div.sheet-spell9 span[data-i18n="9th"]{
|
|
position:absolute;left:602px;top:1573px;
|
|
text-align: center;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spell9 input[data-i18n-placeholder="numspells_9"]{
|
|
position:absolute;left:652px;top:1573px;
|
|
}
|
|
div.sheet-spell9 span[data-i18n="+"]{
|
|
position:absolute;left:696px;top:1573px;
|
|
}
|
|
div.sheet-spell9 input[data-i18n-placeholder="bonusspells_9"]{
|
|
position:absolute;left:702px;top:1573px;
|
|
}
|
|
div.sheet-spell9 span[data-i18n="="]{
|
|
position:absolute;left:747px;top:1573px;
|
|
}
|
|
div.sheet-spell9 input[data-i18n-placeholder="total_spells_9"]{
|
|
position:absolute;left:752px;top:1573px;
|
|
}
|
|
|
|
|
|
|
|
div.sheet-spelllisttitles {
|
|
}
|
|
div.sheet-spelllisttitles span{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
text-align: center;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="name"]{
|
|
position:absolute;left:32px;top:150px;
|
|
width: 190px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="csl"]{
|
|
position:absolute;left:222px;top:150px;
|
|
width: 100px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="ct"]{
|
|
position:absolute;left:322px;top:150px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="r"]{
|
|
position:absolute;left:372px;top:150px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="t/aoe"]{
|
|
position:absolute;left:432px;top:150px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="d"]{
|
|
position:absolute;left:482px;top:150px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="sv"]{
|
|
position:absolute;left:542px;top:150px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="sr"]{
|
|
position:absolute;left:602px;top:150px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-spelllisttitles span[data-i18n="comp"]{
|
|
position:absolute;left:662px;top:150px;
|
|
width: 200px;
|
|
}
|
|
|
|
div.sheet-spellinfo {
|
|
position:absolute;left:32px;top:180px;
|
|
width: 832px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="name"]{
|
|
width: 185px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="csl"]{
|
|
width: 95px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="ct"]{
|
|
width: 50px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="r"]{
|
|
width: 55px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="t/aoe"]{
|
|
width: 45px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="d"]{
|
|
width: 60px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="sv"]{
|
|
width: 55px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="sr"]{
|
|
width: 55px;
|
|
}
|
|
div.sheet-spellinfo input[data-i18n="comp"]{
|
|
width: 200px;
|
|
}
|
|
div.sheet-spellinfo textarea[data-i18n="desc"]{
|
|
width: 822px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
div.sheet-moncol1 {
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="name"]{
|
|
position:absolute;left:32px;top:170px;
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="Int"]{
|
|
position:absolute;left:32px;top:197px;
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="Type"]{
|
|
position:absolute;left:32px;top:224px;
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="alignment"]{
|
|
position:absolute;left:32px;top:251px;
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="size"]{
|
|
position:absolute;left:32px;top:278px;
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="Roll For"]{
|
|
position:absolute;left:32px;top:305px;
|
|
}
|
|
div.sheet-moncol1 span[data-i18n="Initiative"]{
|
|
position:absolute;left:32px;top:325px;
|
|
}
|
|
|
|
div.sheet-moncol2 {
|
|
}
|
|
div.sheet-moncol2 input {
|
|
height: 25px !important;
|
|
}
|
|
div.sheet-moncol2 input[data-i18n-placeholder="MonsterName"]{
|
|
position:absolute;left:117px;top:170px;
|
|
}
|
|
div.sheet-moncol2 input[data-i18n-placeholder="MonsterInt"]{
|
|
position:absolute;left:117px;top:197px;
|
|
}
|
|
div.sheet-moncol2 input[data-i18n-placeholder="MonRace"]{
|
|
position:absolute;left:117px;top:224px;
|
|
}
|
|
div.sheet-moncol2 input[data-i18n-placeholder="MonAlignment"]{
|
|
position:absolute;left:117px;top:251px;
|
|
}
|
|
div.sheet-moncol2 input[data-i18n-placeholder="MonsterSize"]{
|
|
position:absolute;left:117px;top:278px;
|
|
}
|
|
div.sheet-moncol2 button{
|
|
position:absolute;left:132px;top:315px;
|
|
}
|
|
|
|
div.sheet-moncol3 {
|
|
}
|
|
div.sheet-moncol3 span[data-i18n="level"]{
|
|
position:absolute;left:282px;top:170px;
|
|
}
|
|
div.sheet-moncol3 span[data-i18n="Saves"]{
|
|
position:absolute;left:282px;top:197px;
|
|
}
|
|
div.sheet-moncol3 span[data-i18n="ArmorClass"]{
|
|
position:absolute;left:282px;top:224px;
|
|
}
|
|
div.sheet-moncol3 span[data-i18n="movement"]{
|
|
position:absolute;left:282px;top:251px;
|
|
}
|
|
div.sheet-moncol3 span[data-i18n="No."]{
|
|
position:absolute;left:282px;top:273px;
|
|
}
|
|
div.sheet-moncol3 span[data-i18n="Encountered"]{
|
|
position:absolute;left:282px;top:288px;
|
|
}
|
|
|
|
div.sheet-moncol4 {
|
|
}
|
|
div.sheet-moncol4 input {
|
|
height: 25px !important;
|
|
}
|
|
div.sheet-moncol4 input[data-i18n-placeholder="Level"]{
|
|
position:absolute;left:372px;top:170px;
|
|
width: 30px !important;
|
|
}
|
|
div.sheet-moncol4 input[data-i18n-placeholder="MonsterHD"]{
|
|
position:absolute;left:407px;top:170px;
|
|
}
|
|
div.sheet-moncol4 input[data-i18n-placeholder="MonsterSave"]{
|
|
position:absolute;left:372px;top:197px;
|
|
}
|
|
div.sheet-moncol4 input[data-i18n-placeholder="MonsterAC"]{
|
|
position:absolute;left:372px;top:224px;
|
|
}
|
|
div.sheet-moncol4 input[data-i18n-placeholder="MonsterMovement"]{
|
|
position:absolute;left:372px;top:251px;
|
|
}
|
|
div.sheet-moncol4 input[data-i18n-placeholder="MonsterEncountered"]{
|
|
position:absolute;left:372px;top:288px;
|
|
}
|
|
|
|
|
|
div.sheet-SpecialHitPoints {
|
|
position:absolute;left:32px;top:350px;
|
|
background-color: #660C0C;
|
|
color: white;
|
|
width: 370px;
|
|
}
|
|
div.sheet-SpecialHitPoints span{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-width: 1px;
|
|
}
|
|
div.sheet-SpecialHitPoints span[data-i18n="Special Attacks"]{
|
|
position:absolute;left:0px;top:0px;
|
|
width: 240px;
|
|
}
|
|
div.sheet-SpecialHitPoints span[data-i18n="Hit Points"]{
|
|
position:absolute;left:240px;top:0px;
|
|
width: 160px;
|
|
text-align: center !important;
|
|
}
|
|
|
|
div.sheet-Hitpoints{
|
|
position:absolute;left:302px;top:378px;
|
|
}
|
|
|
|
div.sheet-SpecialAttack1 {
|
|
}
|
|
div.sheet-SpecialAttack1 input {
|
|
}
|
|
div.sheet-SpecialAttack1 span[data-i18n="Special"]{
|
|
position:absolute;left:32px;top:405px;
|
|
}
|
|
div.sheet-SpecialAttack1 span[data-i18n="Attack"]{
|
|
position:absolute;left:32px;top:425px;
|
|
}
|
|
div.sheet-SpecialAttack1 input[data-i18n-placeholder="MonsSpec1"]{
|
|
position:absolute;left:117px;top:415px;
|
|
}
|
|
div.sheet-SpecialAttack1 input[data-i18n-placeholder="MonSA1"]{
|
|
position:absolute;left:282px;top:415px;
|
|
}
|
|
div.sheet-SpecialAttack1 button{
|
|
position:absolute;left:382px;top:415px;
|
|
}
|
|
div.sheet-SpecialAttack2 {
|
|
}
|
|
div.sheet-SpecialAttack2 input {
|
|
}
|
|
div.sheet-SpecialAttack2 span[data-i18n="Special"]{
|
|
position:absolute;left:32px;top:442px;
|
|
}
|
|
div.sheet-SpecialAttack2 span[data-i18n="Attack"]{
|
|
position:absolute;left:32px;top:462px;
|
|
}
|
|
div.sheet-SpecialAttack2 input[data-i18n-placeholder="MonsSpec2"]{
|
|
position:absolute;left:117px;top:452px;
|
|
}
|
|
div.sheet-SpecialAttack2 input[data-i18n-placeholder="MonSA2"]{
|
|
position:absolute;left:282px;top:452px;
|
|
}
|
|
div.sheet-SpecialAttack2 button{
|
|
position:absolute;left:382px;top:452px;
|
|
}
|
|
|
|
div.sheet-SpecialDefense {
|
|
}
|
|
div.sheet-SpecialDefense input {
|
|
}
|
|
div.sheet-SpecialDefense span[data-i18n="Special"]{
|
|
position:absolute;left:32px;top:479px;
|
|
}
|
|
div.sheet-SpecialDefense span[data-i18n="Defenses"]{
|
|
position:absolute;left:32px;top:499px;
|
|
}
|
|
div.sheet-SpecialDefense input[data-i18n-placeholder="MonsSpec3"]{
|
|
position:absolute;left:117px;top:489px;
|
|
}
|
|
|
|
div.sheet-moncon {
|
|
position:absolute;left:478px;top:271px;
|
|
}
|
|
div.sheet-moncon button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-moncon label[data-i18n-title="monconpri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-moncon label[data-i18n-title="monconsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-moncon label[data-i18n-title="monconter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-moncon span[data-i18n="constitution"]{
|
|
position:absolute;left:116px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-moncon input[data-i18n-placeholder="moncon"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-moncon input[data-i18n-placeholder="monconmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-monstr {
|
|
position:absolute;left:478px;top:301px;
|
|
}
|
|
div.sheet-monstr button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-monstr label[data-i18n-title="monstrpri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-monstr label[data-i18n-title="monstrsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-monstr label[data-i18n-title="monstrter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-monstr span[data-i18n="strength"]{
|
|
position:absolute;left:125px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-monstr input[data-i18n-placeholder="monstr"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-monstr input[data-i18n-placeholder="monstrmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-mondex {
|
|
position:absolute;left:478px;top:331px;
|
|
}
|
|
div.sheet-mondex button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-mondex label[data-i18n-title="mondexpri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-mondex label[data-i18n-title="mondexsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-mondex label[data-i18n-title="mondexter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-mondex span[data-i18n="dexterity"]{
|
|
position:absolute;left:125px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-mondex input[data-i18n-placeholder="mondex"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-mondex input[data-i18n-placeholder="mondexmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-moncha {
|
|
position:absolute;left:478px;top:361px;
|
|
}
|
|
div.sheet-moncha button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-moncha label[data-i18n-title="monchapri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-moncha label[data-i18n-title="monchasec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-moncha label[data-i18n-title="monchater"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-moncha span[data-i18n="charisma"]{
|
|
position:absolute;left:124px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-moncha input[data-i18n-placeholder="moncha"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-moncha input[data-i18n-placeholder="monchamod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-monint {
|
|
position:absolute;left:478px;top:391px;
|
|
}
|
|
div.sheet-monint button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-monint label[data-i18n-title="monintpri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-monint label[data-i18n-title="monintsec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-monint label[data-i18n-title="monintter"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-monint span[data-i18n="intelligence"]{
|
|
position:absolute;left:116px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-monint input[data-i18n-placeholder="monint"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-monint input[data-i18n-placeholder="monintmod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
div.sheet-monwis {
|
|
position:absolute;left:478px;top:421px;
|
|
}
|
|
div.sheet-monwis button[type="roll"]{
|
|
position:absolute;left:4px;top:5px;
|
|
}
|
|
div.sheet-monwis label[data-i18n-title="monwispri"] > input{
|
|
position:absolute;left:57px;top:8px;
|
|
}
|
|
div.sheet-monwis label[data-i18n-title="monwissec"] > input{
|
|
position:absolute;left:72px;top:8px;
|
|
}
|
|
div.sheet-monwis label[data-i18n-title="monwister"] > input{
|
|
position:absolute;left:87px;top:8px;
|
|
}
|
|
div.sheet-monwis span[data-i18n="wisdom"]{
|
|
position:absolute;left:126px;top:0px;
|
|
font-size:0.8em;
|
|
}
|
|
div.sheet-monwis input[data-i18n-placeholder="monwis"]{
|
|
position:absolute;left:196px;top:1px;
|
|
}
|
|
div.sheet-monwis input[data-i18n-placeholder="monwismod"]{
|
|
position:absolute;left:254px;top:1px;
|
|
}
|
|
|
|
div.sheet-monweaponheading {
|
|
}
|
|
div.sheet-monweaponheading span{
|
|
background-color: #660C0C;
|
|
color: white;
|
|
border-bottom: solid;
|
|
border-bottom-color: #222222;
|
|
border-bottom-width: 1px;
|
|
text-align: center;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Weapons"]{
|
|
position:absolute;left:32px;top:526px;
|
|
width: 120px;
|
|
background-color: transparent;
|
|
border-bottom: none;
|
|
text-align: left;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="HitDmg"]{
|
|
position:absolute;left:32px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="name"]{
|
|
position:absolute;left:92px;top:553px;
|
|
width: 190px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="BtH"]{
|
|
position:absolute;left:277px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="mod"]{
|
|
position:absolute;left:330px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Misc"]{
|
|
position:absolute;left:385px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Magic"]{
|
|
position:absolute;left:442px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Total"]{
|
|
position:absolute;left:492px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="|"]{
|
|
position:absolute;left:542px;top:553px;
|
|
width: 20px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Dmg"]{
|
|
position:absolute;left:552px;top:553px;
|
|
width: 60px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="mod2"]{
|
|
position:absolute;left:607px;top:553px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Misc2"]{
|
|
position:absolute;left:657px;top:553px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Magic2"]{
|
|
position:absolute;left:707px;top:553px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-monweaponheading span[data-i18n="Total2"]{
|
|
position:absolute;left:757px;top:553px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 {
|
|
}
|
|
div.sheet-MonWeapon1 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-MonWeapon1 button[name="roll_MonWeaponOne"]{
|
|
position:absolute;left:42px;top:580px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponName"]{
|
|
position:absolute;left:92px;top:580px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponBth"]{
|
|
position:absolute;left:282px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponHitMod"]{
|
|
position:absolute;left:337px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponHitMisc"]{
|
|
position:absolute;left:392px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponHitMagic"]{
|
|
position:absolute;left:447px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponHitTotal"]{
|
|
position:absolute;left:502px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponDmg"]{
|
|
position:absolute;left:557px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponMod"]{
|
|
position:absolute;left:612px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponMisc"]{
|
|
position:absolute;left:662px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponMagic"]{
|
|
position:absolute;left:712px;top:580px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon1 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:580px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon1 input[data-i18n-placeholder="MonWeaponTotal"]{
|
|
position:absolute;left:762px;top:580px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-MonWeapon2 {
|
|
}
|
|
div.sheet-MonWeapon2 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-MonWeapon2 button[name="roll_MonWeaponTwo"]{
|
|
position:absolute;left:42px;top:607px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponName"]{
|
|
position:absolute;left:92px;top:607px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponBth"]{
|
|
position:absolute;left:282px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponHitMod"]{
|
|
position:absolute;left:337px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponHitMisc"]{
|
|
position:absolute;left:392px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponHitMagic"]{
|
|
position:absolute;left:447px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponHitTotal"]{
|
|
position:absolute;left:502px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponDmg"]{
|
|
position:absolute;left:557px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponMod"]{
|
|
position:absolute;left:612px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponMisc"]{
|
|
position:absolute;left:662px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponMagic"]{
|
|
position:absolute;left:712px;top:607px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon2 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:607px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon2 input[data-i18n-placeholder="MonWeaponTotal"]{
|
|
position:absolute;left:762px;top:607px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-MonWeapon3 {
|
|
}
|
|
div.sheet-MonWeapon3 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-MonWeapon3 button[name="roll_MonWeaponThree"]{
|
|
position:absolute;left:42px;top:634px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponName"]{
|
|
position:absolute;left:92px;top:634px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponBth"]{
|
|
position:absolute;left:282px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponHitMod"]{
|
|
position:absolute;left:337px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponHitMisc"]{
|
|
position:absolute;left:392px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponHitMagic"]{
|
|
position:absolute;left:447px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponHitTotal"]{
|
|
position:absolute;left:502px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponDmg"]{
|
|
position:absolute;left:557px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponMod"]{
|
|
position:absolute;left:612px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponMisc"]{
|
|
position:absolute;left:662px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponMagic"]{
|
|
position:absolute;left:712px;top:634px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon3 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:634px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon3 input[data-i18n-placeholder="MonWeaponTotal"]{
|
|
position:absolute;left:762px;top:634px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-MonWeapon4 {
|
|
}
|
|
div.sheet-MonWeapon4 input{
|
|
text-align: center;
|
|
}
|
|
div.sheet-MonWeapon4 button[name="roll_MonWeaponFour"]{
|
|
position:absolute;left:42px;top:661px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponName"]{
|
|
position:absolute;left:92px;top:661px;
|
|
width: 180px !important;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponBth"]{
|
|
position:absolute;left:282px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="+"]{
|
|
position:absolute;left:330px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponHitMod"]{
|
|
position:absolute;left:337px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="+2"]{
|
|
position:absolute;left:385px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponHitMisc"]{
|
|
position:absolute;left:392px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="+3"]{
|
|
position:absolute;left:440px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponHitMagic"]{
|
|
position:absolute;left:447px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="="]{
|
|
position:absolute;left:495px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponHitTotal"]{
|
|
position:absolute;left:502px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="|"]{
|
|
position:absolute;left:552px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponDmg"]{
|
|
position:absolute;left:557px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="+4"]{
|
|
position:absolute;left:605px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponMod"]{
|
|
position:absolute;left:612px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="+5"]{
|
|
position:absolute;left:655px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponMisc"]{
|
|
position:absolute;left:662px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="+6"]{
|
|
position:absolute;left:705px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponMagic"]{
|
|
position:absolute;left:712px;top:661px;
|
|
width: 50px;
|
|
}
|
|
div.sheet-MonWeapon4 span[data-i18n="=2"]{
|
|
position:absolute;left:755px;top:661px;
|
|
width: 5px;
|
|
}
|
|
div.sheet-MonWeapon4 input[data-i18n-placeholder="MonWeaponTotal"]{
|
|
position:absolute;left:762px;top:661px;
|
|
width: 50px;
|
|
}
|
|
|
|
div.sheet-monnotes {
|
|
}
|
|
div.sheet-monnotes span{
|
|
position:absolute;left:32px;top:688px;
|
|
}
|
|
div.sheet-monnotes textarea{
|
|
position:absolute;left:32px;top:715px;
|
|
width: 760px;
|
|
}
|
|
|
|
.sheet-rolltemplate-attack div.sheet-template-container {
|
|
border: 2px solid #000 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
.sheet-rolltemplate-attack .sheet-template-header {
|
|
background-color: rgba(112, 32, 130,1);
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
.sheet-rolltemplate-attack div {
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
.sheet-rolltemplate-attack div:nth-child(odd) {
|
|
background-color: rgba(217, 217, 214,1);
|
|
}
|
|
.sheet-rolltemplate-attack div:nth-child(even) {
|
|
background-color: rgba(233, 233, 233,1);
|
|
}
|
|
.sheet-rolltemplate-attack .inlinerollresult {
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
text-align: center;
|
|
border: 2px solid rgba(167, 168, 170,1);
|
|
}
|
|
.sheet-rolltemplate-attack .inlinerollresult.fullcrit {
|
|
border: 2px solid #3FB315;
|
|
}
|
|
.sheet-rolltemplate-attack .inlinerollresult.fullfail {
|
|
border: 2px solid #B31515;
|
|
}
|
|
.sheet-rolltemplate-attack .inlinerollresult.importantroll {
|
|
border: 2px solid #4A57ED;
|
|
}
|
|
|
|
.sheet-rolltemplate-custom div.sheet-template-container {
|
|
border: 2px solid #000 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
.sheet-rolltemplate-custom .sheet-template-header {
|
|
background-color: rgba(112, 32, 130,1);
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
.sheet-rolltemplate-custom div {
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
.sheet-rolltemplate-custom div:nth-child(odd) {
|
|
background-color: rgba(217, 217, 214,1);
|
|
}
|
|
.sheet-rolltemplate-custom div:nth-child(even) {
|
|
background-color: rgba(233, 233, 233,1);
|
|
}
|
|
.sheet-rolltemplate-custom .inlinerollresult {
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
text-align: center;
|
|
border: 2px solid rgba(167, 168, 170,1);
|
|
}
|
|
.sheet-rolltemplate-custom .inlinerollresult.fullcrit {
|
|
border: 2px solid #3FB315;
|
|
}
|
|
.sheet-rolltemplate-custom .inlinerollresult.fullfail {
|
|
border: 2px solid #B31515;
|
|
}
|
|
.sheet-rolltemplate-custom .inlinerollresult.importantroll {
|
|
border: 2px solid #4A57ED;
|
|
}
|
|
|
|
.sheet-rolltemplate-stats div.sheet-template-container {
|
|
border: 2px solid #000 !important;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
.sheet-rolltemplate-stats .sheet-template-header {
|
|
background-color: rgba(112, 32, 130,1);
|
|
color: #000;
|
|
padding: 2px;
|
|
border-bottom: 1px solid black;
|
|
line-height: 1.6em;
|
|
font-size: 1.2em;
|
|
}
|
|
.sheet-rolltemplate-stats div {
|
|
padding: 5px;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
.sheet-rolltemplate-stats div:nth-child(odd) {
|
|
background-color: rgba(217, 217, 214,1);
|
|
}
|
|
.sheet-rolltemplate-stats div:nth-child(even) {
|
|
background-color: rgba(233, 233, 233,1);
|
|
}
|
|
.sheet-rolltemplate-stats .inlinerollresult {
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
text-align: center;
|
|
border: 2px solid rgba(167, 168, 170,1);
|
|
}
|
|
.sheet-rolltemplate-stats .inlinerollresult.fullcrit {
|
|
border: 2px solid #3FB315;
|
|
}
|
|
.sheet-rolltemplate-stats .inlinerollresult.fullfail {
|
|
border: 2px solid #B31515;
|
|
}
|
|
.sheet-rolltemplate-stats .inlinerollresult.importantroll {
|
|
border: 2px solid #4A57ED;
|
|
} |