forked from GitHub-Mirrors/foundry-sw5e
Super VJ Update
This commit is contained in:
parent
442212bdea
commit
1983b74bde
59 changed files with 4640 additions and 2462 deletions
|
@ -4,8 +4,8 @@
|
|||
/* Basic Structure */
|
||||
/* ----------------------------------------- */
|
||||
.sw5e.sheet.actor.character {
|
||||
min-width: 680px;
|
||||
min-height: 736px;
|
||||
min-width: 720px;
|
||||
min-height: 680px;
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Sheet Header */
|
||||
|
@ -13,93 +13,73 @@
|
|||
|
||||
.sheet-header {
|
||||
|
||||
// Character Profile image (larger than usual)
|
||||
// Character Profile image (larger)
|
||||
img.profile {
|
||||
flex: 0 0 180px;
|
||||
max-width: 180px;
|
||||
height: 180px;
|
||||
flex: 0 0 160px;
|
||||
max-width: 160px;
|
||||
height: 160px;
|
||||
}
|
||||
|
||||
// Character level and experience bar
|
||||
// Character Level
|
||||
.charlevel {
|
||||
flex: 0 0 180px;
|
||||
padding: 0 5px 2px;
|
||||
flex: 0 0 20px;
|
||||
height: 20px;
|
||||
font-size: 18px;
|
||||
color: @colorTan;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.level {
|
||||
height: 28px;
|
||||
// Experience Tracking
|
||||
.experience {
|
||||
flex: 0 0 32px;
|
||||
margin-bottom: -5px;
|
||||
align-items: center;
|
||||
font-size: 18px;
|
||||
span.max {
|
||||
color: @colorTan;
|
||||
flex: none;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.experience {
|
||||
input[type="text"] {
|
||||
width: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.xpbar {
|
||||
width: 100%;
|
||||
flex: 0 0 8px;
|
||||
background: #666;
|
||||
}
|
||||
.xpbar {
|
||||
flex: 0 0 8px;
|
||||
width: 100%;
|
||||
margin-bottom: 5px;
|
||||
background: @colorTan;
|
||||
border: 1px solid #000;
|
||||
border-radius: 3px;
|
||||
.bar {
|
||||
height: 4px;
|
||||
margin: 1px;
|
||||
display: block;
|
||||
background: #afebff;
|
||||
border: 1px solid #000;
|
||||
border-radius: 3px;
|
||||
|
||||
.bar {
|
||||
height: 4px;
|
||||
margin: 1px;
|
||||
display: block;
|
||||
background: #afebff;
|
||||
border: 1px solid #000;
|
||||
border-radius: 2px;
|
||||
}
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
// Character Summary
|
||||
.summary {
|
||||
border-bottom: @borderGroove;
|
||||
}
|
||||
|
||||
// Primary Attributes
|
||||
// Header Attributes
|
||||
.attributes {
|
||||
height: 80px;
|
||||
margin: 0;
|
||||
|
||||
.attribute {
|
||||
height: 80px;
|
||||
margin: 0;
|
||||
border: none;
|
||||
border-right: @borderGroove;
|
||||
border-radius: 0;
|
||||
|
||||
&:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.attribute-value {
|
||||
margin: 5px 0 0;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
}
|
||||
|
||||
.attribute-name {
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.attribute-footer {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
a.rest {
|
||||
border: 1px solid @colorBeige;
|
||||
border-radius: 2px;
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
padding: 1px 3px;
|
||||
margin: 0 6px;
|
||||
padding: 0 3px;
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.hit-dice {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.initiative .attribute-footer input {
|
||||
width: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.summary .proficiency {
|
||||
text-align: right;
|
||||
padding-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -107,26 +87,24 @@
|
|||
/* Sheet Body */
|
||||
/* ----------------------------------------- */
|
||||
|
||||
.attributes {
|
||||
.resource {
|
||||
.attribute-name {
|
||||
margin: 0 8px;
|
||||
input[type="text"] {
|
||||
height: 20px;
|
||||
margin: 2px 0 -2px;
|
||||
line-height: 24px;
|
||||
}
|
||||
}
|
||||
label.checkbox {
|
||||
margin: 0 3px;
|
||||
input[type="checkbox"] {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
// Custom Resources
|
||||
.resource .attribute-value {
|
||||
input {
|
||||
flex: 0 0 25%;
|
||||
}
|
||||
|
||||
.initiative .attribute-footer input {
|
||||
width: 32px;
|
||||
label.recharge {
|
||||
height: 32px;
|
||||
position: relative;
|
||||
font-family: "Signika", sans-serif;
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
color: @colorOlive;
|
||||
input[type="checkbox"] {
|
||||
height: 14px;
|
||||
width: 14px;
|
||||
margin: 0;
|
||||
top: -6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -143,88 +121,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
.counters {
|
||||
.death-saves {
|
||||
flex: 2;
|
||||
.counter-value {
|
||||
flex: 0 0 90px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item-detail.player-class {
|
||||
flex: 0 0 180px;
|
||||
text-align: right;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Inventory */
|
||||
/* ----------------------------------------- */
|
||||
|
||||
/* Encumbrance Bar */
|
||||
.encumbrance {
|
||||
flex: 0 0 12px;
|
||||
background: @colorTan;
|
||||
margin: 1px 15px 0 1px;
|
||||
border: 1px solid @colorDark;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
|
||||
.encumbrance-bar {
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
left: 1px;
|
||||
background: #6c8aa5;
|
||||
height: 8px;
|
||||
border: 1px solid #cde4ff;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.encumbrance-label {
|
||||
height: 10px;
|
||||
padding: 0 5px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
font-size: 13px;
|
||||
line-height: 12px;
|
||||
text-align: right;
|
||||
color: #EEE;
|
||||
text-shadow: 0 0 5px #000;
|
||||
}
|
||||
|
||||
.encumbrance-breakpoint {
|
||||
display: block;
|
||||
position: absolute;
|
||||
&.encumbrance-33 { left: 33% }
|
||||
&.encumbrance-66 { left: 66% }
|
||||
}
|
||||
|
||||
.arrow-up {
|
||||
bottom: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-bottom: 4px solid #666;
|
||||
}
|
||||
|
||||
.arrow-down {
|
||||
top: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-top: 4px solid #666;
|
||||
}
|
||||
|
||||
&.encumbered {
|
||||
.arrow-up { border-bottom: 4px solid #000; }
|
||||
.arrow-down { border-top: 4px solid #000; }
|
||||
}
|
||||
}
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Item Controls */
|
||||
/* ----------------------------------------- */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue