forked from GitHub-Mirrors/foundry-sw5e
character sheet added, light theme only
This commit is contained in:
parent
e7ec90c944
commit
d217b00916
16 changed files with 2833 additions and 22 deletions
889
sw5e-global.css
889
sw5e-global.css
|
@ -176,9 +176,10 @@ a:active {
|
|||
position: absolute;
|
||||
font-family: "Aurebesh", sans-serif;
|
||||
font-size: 13px;
|
||||
color: #1C1C1C;
|
||||
color: #4f4f4f;
|
||||
animation: none;
|
||||
opacity: 0.7;
|
||||
opacity: 0.8;
|
||||
text-shadow: 0 0 8px #0d99cc;
|
||||
}
|
||||
#pause h3::before {
|
||||
content: "GAME";
|
||||
|
@ -328,9 +329,17 @@ input[type="reset"]:disabled {
|
|||
#sidebar {
|
||||
border: none;
|
||||
}
|
||||
#sidebar.collapsed #sidebar-tabs {
|
||||
min-height: 370px;
|
||||
justify-content: center;
|
||||
}
|
||||
#sidebar.collapsed #sidebar-tabs > .item.active {
|
||||
border: none;
|
||||
}
|
||||
#sidebar-tabs {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
justify-content: space-between;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
#sidebar-tabs .item {
|
||||
|
@ -672,6 +681,882 @@ input[type="reset"]:disabled {
|
|||
padding: 0 8px;
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
.panel {
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.sw5e.sheet.actor.character {
|
||||
min-width: 780px;
|
||||
min-height: 720px;
|
||||
}
|
||||
.sw5e.sheet .window-content {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.sw5e.sheet .window-content input,
|
||||
.sw5e.sheet .window-content select {
|
||||
height: 24px;
|
||||
line-height: 20px;
|
||||
padding: 1px 4px;
|
||||
}
|
||||
.sw5e.sheet .window-content input:hover,
|
||||
.sw5e.sheet .window-content select:hover {
|
||||
box-shadow: none;
|
||||
}
|
||||
.sw5e.sheet .window-content input:focus,
|
||||
.sw5e.sheet .window-content select:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.sw5e.sheet .window-content button {
|
||||
cursor: pointer;
|
||||
}
|
||||
.sw5e.sheet .window-content button:hover,
|
||||
.sw5e.sheet .window-content button:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet {
|
||||
display: grid;
|
||||
grid-template-rows: 182px 40px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet section > h1 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: left;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header {
|
||||
display: grid;
|
||||
grid-template-rows: 1fr 26px auto;
|
||||
grid-template-columns: 128px 1fr;
|
||||
column-gap: 8px;
|
||||
row-gap: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header img {
|
||||
grid-column-start: 1;
|
||||
grid-row-start: 1;
|
||||
grid-row-end: 4;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header h1.character-name {
|
||||
grid-row: 1;
|
||||
grid-column: 2;
|
||||
margin: 0;
|
||||
border: none;
|
||||
align-self: center;
|
||||
font-family: 'Russo One';
|
||||
font-size: 32px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-transform: uppercase;
|
||||
height: auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header h1.character-name input[type="text"] {
|
||||
font-family: 'Russo One';
|
||||
font-size: 32px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-transform: uppercase;
|
||||
height: auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header h1.character-name input[type="text"]:focus {
|
||||
text-transform: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .level-experience {
|
||||
grid-row: 1;
|
||||
grid-column: 3;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .level-experience .charlevel {
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: right;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .level-experience .experience {
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: right;
|
||||
line-height: 26px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .level-experience .experience input {
|
||||
display: inline-block;
|
||||
width: 120px;
|
||||
text-align: right;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .level-experience .xpbar {
|
||||
height: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .level-experience .xpbar .bar {
|
||||
display: block;
|
||||
height: 100%;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .summary {
|
||||
grid-column-start: 2;
|
||||
grid-row-start: 2;
|
||||
grid-column-end: 4;
|
||||
display: grid;
|
||||
grid-template-rows: 1fr;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .summary input,
|
||||
.sw5e.sheet.actor .swalt-sheet header .summary .proficiency {
|
||||
display: inline;
|
||||
height: auto;
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .summary .proficiency {
|
||||
line-height: 26px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes {
|
||||
grid-column-start: 2;
|
||||
grid-row-start: 3;
|
||||
grid-column-end: 4;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
column-gap: 12px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes h1 {
|
||||
text-align: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value input {
|
||||
font-family: 'Russo One';
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: center;
|
||||
line-height: 1;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value.multiple {
|
||||
display: grid;
|
||||
grid-template-columns: auto 14px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value.multiple input {
|
||||
width: 100%;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value input {
|
||||
display: inline-block;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value .value-number {
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
padding: 0px 3px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value .value-number:last-child {
|
||||
text-align: left;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value span.value-number {
|
||||
padding: 1px 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes .attribute-value .initiative {
|
||||
padding: 1px 4px;
|
||||
display: block;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer button {
|
||||
background: none;
|
||||
padding: 1px 3px;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer button:hover {
|
||||
font-weight: 400;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
column-gap: 8px;
|
||||
margin-top: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points input,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice input,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative input,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points button,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice button,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative button {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points button,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice button,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative button {
|
||||
font-weight: 400;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-points span,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.hit-dice span,
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.initiative span {
|
||||
display: block;
|
||||
padding: 3px 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.speed {
|
||||
margin-top: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet header .attributes footer.speed input {
|
||||
text-align: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet nav.sheet-navigation {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 1fr);
|
||||
column-gap: 16px;
|
||||
margin: 4px 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet nav.sheet-navigation .item {
|
||||
background: none;
|
||||
border: none;
|
||||
border-bottom: 3px solid transparent;
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
padding: 0 0 8px;
|
||||
line-height: 1.6;
|
||||
font-family: 'Russo One';
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .editor {
|
||||
position: static;
|
||||
min-height: 32px;
|
||||
padding: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .editor .editor-edit {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .editor .editor-edit:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .editor .tox.tox-tinymce {
|
||||
height: 250px !important;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab {
|
||||
display: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.active {
|
||||
display: block;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .filter-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 0 8px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-end;
|
||||
max-width: 100%;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-title {
|
||||
display: none;
|
||||
font-weight: bold;
|
||||
width: 50px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item {
|
||||
width: 100px;
|
||||
text-align: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item + .filter-item {
|
||||
margin-left: 12px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .filter-list .filter-item:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list-header {
|
||||
display: grid;
|
||||
padding-right: 6px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list-title h3 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 17px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
margin: 4px 0 0;
|
||||
padding: 0 4px;
|
||||
display: inline;
|
||||
border: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list-title .item-create {
|
||||
font-size: 12px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list-title .item-create i {
|
||||
font-size: 10px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list-title .item-create:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list-header .item-detail,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list .item-detail {
|
||||
text-align: left;
|
||||
padding: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list {
|
||||
height: 100%;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list > li:first-child {
|
||||
padding-top: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol {
|
||||
list-style: none;
|
||||
margin: 0 0 8px;
|
||||
padding: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list .item-uses input,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol .item-uses input {
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
margin-right: 0;
|
||||
text-align: right;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list .item-uses span,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol .item-uses span {
|
||||
padding-left: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list .item-uses .slot-max-override,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol .item-uses .slot-max-override {
|
||||
margin-left: 5px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list .item-uses .slot-max-override:hover,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol .item-uses .slot-max-override:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item {
|
||||
display: grid;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item h4,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item h4 {
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-detail,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-detail {
|
||||
padding: 4px;
|
||||
line-height: 30px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name {
|
||||
display: flex;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name .item-image,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name .item-image {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
position: relative;
|
||||
background-size: contain;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name .item-image::before,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name .item-image::before {
|
||||
font-family: "Font Awesome 5 Free";
|
||||
font-weight: 900;
|
||||
content: '\f6cf';
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 2px;
|
||||
font-size: 26px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name h4,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name h4 {
|
||||
line-height: 30px;
|
||||
display: inline-block;
|
||||
height: 30px;
|
||||
padding-left: 8px;
|
||||
margin: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover .item-image,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover .item-image {
|
||||
background-image: none !important;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover .item-image::before,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover .item-image::before {
|
||||
opacity: 1;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover .item-image:hover,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover .item-image:hover {
|
||||
background-image: none !important;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-name.rollable:hover .item-image:hover::before,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-name.rollable:hover .item-image:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-summary,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-summary {
|
||||
grid-column-start: 1;
|
||||
grid-column-end: -1;
|
||||
padding: 4px 4px 4px 38px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-controls,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-controls {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list li.item .item-control:hover,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-list ol li.item .item-control:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-inventory {
|
||||
grid-template-columns: auto 60px 100px 100px 100px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-inventory.group-list-title .item-controls {
|
||||
grid-column-start: 5;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-features {
|
||||
grid-template-columns: auto 100px 100px 100px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-features.group-list-title {
|
||||
display: grid;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-features .item-controls {
|
||||
grid-column-start: 4;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-powers {
|
||||
grid-template-columns: auto repeat(5, 100px);
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-powers.group-list-title {
|
||||
display: grid;
|
||||
align-items: end;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-powers.group-list-title .item-detail {
|
||||
padding: 0 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-fav-items {
|
||||
grid-template-columns: auto 60px 30px 30px 50px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-fav-items.group-list-title {
|
||||
display: grid;
|
||||
align-items: end;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab .group-grid-fav-items.group-list-title .item-detail {
|
||||
padding: 0 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab > .panel {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
display: grid;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes {
|
||||
grid-template-columns: 350px auto;
|
||||
grid-template-rows: auto;
|
||||
column-gap: 16px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes.active {
|
||||
display: grid;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities {
|
||||
display: grid;
|
||||
grid-template-columns: 128px auto;
|
||||
grid-template-rows: auto;
|
||||
column-gap: 12px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities ol {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li {
|
||||
border-radius: 0;
|
||||
padding: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li + li {
|
||||
border-top: 0 !important;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li:first-child {
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li:last-child {
|
||||
border-bottom-width: 1px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li h2 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
border: none;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li h2:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-score {
|
||||
font-family: 'Russo One';
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: center;
|
||||
width: 48px;
|
||||
margin: 0 auto;
|
||||
height: 24px;
|
||||
display: block;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers {
|
||||
margin: 0 -4px -4px;
|
||||
display: grid;
|
||||
grid-template-columns: 28px auto 28px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-mod,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-save {
|
||||
padding: 2px 4px;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
font-size: 13px;
|
||||
text-align: center;
|
||||
border-style: solid;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-mod {
|
||||
border-width: 1px 1px 0 0;
|
||||
border-radius: 0 4px 0 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .ability-save {
|
||||
border-width: 1px 0 0 1px;
|
||||
border-radius: 4px 0 0 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .scores li .ability-modifiers .proficiency-toggle {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: 1;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li {
|
||||
display: grid;
|
||||
grid-template-columns: 28px auto 18px 28px;
|
||||
align-items: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .proficiency-toggle {
|
||||
border: none;
|
||||
background: none;
|
||||
height: 23px;
|
||||
line-height: 23px;
|
||||
padding: 0 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .skill-name:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .skill-ability {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .abilities .skills li .skill-mod {
|
||||
text-align: right;
|
||||
padding-right: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources {
|
||||
grid-template-rows: 32px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
background: none;
|
||||
border: none;
|
||||
border-bottom: 3px solid transparent;
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
padding: 0 4px;
|
||||
line-height: 1.6;
|
||||
font-family: 'Russo One';
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources nav button + button {
|
||||
margin-left: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-gap: 16px;
|
||||
row-gap: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits input,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits select {
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits label {
|
||||
font-size: 13px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .trait-selector {
|
||||
background: none;
|
||||
border: none;
|
||||
display: inline;
|
||||
width: auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .trait-selector:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .trait-selector i.fas {
|
||||
float: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .trait-selector i.fas:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .languages {
|
||||
grid-column-end: span 2;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .languages label:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .traits-list li {
|
||||
display: inline;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .traits-list li::after {
|
||||
content: ',';
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits .traits-list li:last-child::after {
|
||||
content: '';
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits ul.passives {
|
||||
grid-column-end: span 2;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-gap: 4px;
|
||||
row-gap: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.traits ul.passives strong {
|
||||
font-size: 13px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
column-gap: 12px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource h1 {
|
||||
border: none;
|
||||
margin: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource h1 input {
|
||||
font-family: 'Russo One';
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
margin-bottom: 4px;
|
||||
border-radius: 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value input {
|
||||
font-family: 'Russo One';
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: center;
|
||||
line-height: 1;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value {
|
||||
display: grid;
|
||||
grid-template-columns: auto 14px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value input {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value .value-number {
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
padding: 0px 3px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value .value-number:last-child {
|
||||
text-align: left;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-value span.value-number {
|
||||
padding: 1px 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-footer {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .resource-items .resource .attribute-footer label {
|
||||
text-align: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters {
|
||||
border: none;
|
||||
margin: 16px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter {
|
||||
height: auto;
|
||||
border: none;
|
||||
text-align: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter h4 {
|
||||
font-size: 13px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter h4.rollable:hover {
|
||||
text-shadow: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .counter-value {
|
||||
display: inline;
|
||||
text-align: left;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter input[type="text"] {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter input[type="checkbox"] {
|
||||
display: inline-block;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-success,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-fail {
|
||||
display: inline-block;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.attributes .traits-resources section.resources .counters .counter .death-success {
|
||||
margin-right: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory > .panel {
|
||||
grid-template-rows: 32px 32px 24px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .currency-encumbrance {
|
||||
display: grid;
|
||||
grid-template-columns: 200px auto;
|
||||
margin-bottom: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .currency {
|
||||
font-family: 'Russo One';
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .currency input {
|
||||
display: inline-block;
|
||||
width: 128px;
|
||||
font-family: 'Open Sans';
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: 400px 100px;
|
||||
width: 500px;
|
||||
justify-self: end;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance-label {
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
width: 100%;
|
||||
text-shadow: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
margin-left: -2px;
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance {
|
||||
position: relative;
|
||||
border-radius: 4px;
|
||||
height: 16px;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.inventory .encumbrance-wrapper .encumbrance .encumbrance-bar {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.features > .panel {
|
||||
grid-template-rows: 24px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.powerbook > .panel {
|
||||
grid-template-rows: 32px 24px 24px auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.powerbook .powercasting-ability {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.powerbook .powercasting-ability label,
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.powerbook .powercasting-ability h3 {
|
||||
font-family: 'Russo One';
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
border-bottom: none;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.powerbook .powercasting-ability .power-dc {
|
||||
grid-column-start: 3;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.biography {
|
||||
grid-template-columns: 1fr 2fr;
|
||||
grid-template-rows: 100%;
|
||||
column-gap: 16px;
|
||||
padding-bottom: 8px;
|
||||
max-width: 100%;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.biography.active {
|
||||
display: grid;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.biography > .panel {
|
||||
display: block;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.biography section {
|
||||
position: relative;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.notes > .panel {
|
||||
display: block;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.notes section {
|
||||
position: relative;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.notes section > input {
|
||||
font-family: 'Russo One';
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: left;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet .tab.notes section .editor .editor-edit {
|
||||
top: 3px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet.limited {
|
||||
grid-template-rows: 144px auto;
|
||||
row-gap: 8px;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet.limited header {
|
||||
grid-template-rows: 1fr;
|
||||
}
|
||||
.sw5e.sheet.actor .swalt-sheet.limited .tab.biography {
|
||||
grid-template-columns: 100%;
|
||||
}
|
||||
@keyframes pause-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue