Initial import with skill sheet worning
This commit is contained in:
@ -1,46 +0,0 @@
|
||||
#tenebris-application-fortune {
|
||||
font-family: var(--font-primary);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
color: var(--color-light-1);
|
||||
|
||||
menu {
|
||||
.rollable:hover,
|
||||
.rollable:focus {
|
||||
text-shadow: 0 0 8px var(--color-shadow-primary);
|
||||
}
|
||||
}
|
||||
|
||||
section {
|
||||
background-image: url("../assets/background-small.webp");
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.application-fortune {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
|
||||
align-items: center;
|
||||
//align-items: center;
|
||||
font-size: calc(var(--font-size-standard) * 3);
|
||||
button {
|
||||
color: var(--color-light-1);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
margin-top: 10px;
|
||||
border: none;
|
||||
background-color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
.application-fortune-gm {
|
||||
//padding-right: 50px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.application-fortune-player {
|
||||
//padding-right: 20px;
|
||||
justify-content: space-between
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
#tenebris-application-manager {
|
||||
#lethalfantasy-application-manager {
|
||||
display: flex;
|
||||
|
||||
font-family: var(--font-primary);
|
||||
@ -8,7 +8,7 @@
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
|
||||
.tenebris-table {
|
||||
.lethalfantasy-table {
|
||||
margin: 1rem;
|
||||
background: none;
|
||||
padding: 0;
|
||||
|
@ -1,18 +1,18 @@
|
||||
@import "global.less";
|
||||
|
||||
.tenebris {
|
||||
.lethalfantasy {
|
||||
@import "mixins.less";
|
||||
@import "character.less";
|
||||
@import "opponent.less";
|
||||
@import "path.less";
|
||||
@import "talent.less";
|
||||
@import "skill.less";
|
||||
@import "gift.less";
|
||||
@import "weapon.less";
|
||||
@import "armor.less";
|
||||
@import "spell.less";
|
||||
@import "attack.less";
|
||||
@import "vulnerability.less";
|
||||
@import "save.less";
|
||||
@import "chat.less";
|
||||
}
|
||||
|
||||
@import "roll.less";
|
||||
@import "application-fortune.less";
|
||||
@import "application-manager.less";
|
@ -1,4 +1,4 @@
|
||||
.path-content {
|
||||
.gifts-content {
|
||||
.sheet-common();
|
||||
.item-sheet-common();
|
||||
|
@ -2,7 +2,7 @@
|
||||
--font-size-standard: 0.8125rem;
|
||||
--background-image-base: url("../assets/parchment.jpg");
|
||||
--font-secondary: "Amiri", serif;
|
||||
--logo-standard: url("../assets/tenebris-logo.webp");
|
||||
--logo-standard: url("../assets/lethal-fantasy-logo.webp");
|
||||
}
|
||||
|
||||
#logo {
|
||||
@ -20,7 +20,7 @@
|
||||
left: calc(50% - 96px);
|
||||
}
|
||||
|
||||
i.tenebris {
|
||||
i.lethalfantasy {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background-image: var(--logo-standard);
|
||||
@ -33,7 +33,7 @@ i.tenebris {
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.application.dialog.tenebris {
|
||||
.application.dialog.lethalfantasy {
|
||||
font-family: var(--font-primary);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
background-image: var(--background-image-base);
|
||||
|
@ -1,4 +1,4 @@
|
||||
.application.dialog.tenebris {
|
||||
.application.dialog.lethalfantasy {
|
||||
color: var(--color-dark-1);
|
||||
|
||||
input,
|
||||
@ -9,7 +9,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
.tenebris-roll-dialog {
|
||||
.lethalfantasy-roll-dialog {
|
||||
fieldset {
|
||||
padding: 10px;
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
.attack-content {
|
||||
.save-content {
|
||||
.sheet-common();
|
||||
.item-sheet-common();
|
||||
|
@ -1,4 +1,4 @@
|
||||
.talent-content {
|
||||
.skill-content {
|
||||
.sheet-common();
|
||||
.item-sheet-common();
|
||||
|
26
styles/vulnerability.less
Normal file
26
styles/vulnerability.less
Normal file
@ -0,0 +1,26 @@
|
||||
.vulnerability-content {
|
||||
.sheet-common();
|
||||
.item-sheet-common();
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
font-size: var(--font-size-14);
|
||||
width: 20px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:checked {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
input[type="checkbox"]:checked::after {
|
||||
color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user