Automate project with gulp and transition to TypeScript.

Expand character data and sheet.
This commit is contained in:
mstein
2022-06-06 01:40:24 +02:00
parent 6a7d402395
commit e952dcb67a
62 changed files with 3271 additions and 410 deletions
+43
View File
@@ -0,0 +1,43 @@
// main: midgard5.less
.midgard5 {
.flexrow {
align-items: center;
}
h3 {
margin-top: 1rem;
}
.sheet.character {
form {
display: flex;
flex-direction: column;
}
.sheet-content {
height: 100%;
display: flex;
flex-direction: column;
.editor {
height: 100%;
}
}
.profile-img {
height: 64px;
width: 64px;
}
.description {
flex: 0 0 100%;
margin: 0;
}
}
.level-display {
text-align: right;
font-weight: bold;
}
}
+20
View File
@@ -0,0 +1,20 @@
// main: midgard5.less
.midgard5.sheet.item {
form {
display: flex;
flex-direction: column;
}
.sheet-content {
height: 100%;
display: flex;
flex-direction: column;
.editor {
height: 100%;
}
}
.item-img {
height: 64px;
width: 64px;
}
}