add Inventar and combat system base values

This commit is contained in:
Sven Balzer
2024-10-12 16:58:13 +02:00
parent 948dba6032
commit e2ffb67d35
6 changed files with 309 additions and 102 deletions
+43 -4
View File
@@ -20,6 +20,8 @@
.center {
text-align: center;
justify-content: center;
align-content: center;
}
@@ -80,6 +82,35 @@
height: 80px;
}
.list-header {
padding: 0.5rem;
}
.list {
box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.list-item {
padding: 0.25rem;
border-bottom: 1px dotted;
}
.list-item:last-child {
border: none;
}
.item-name {
gap: 0.5rem;
}
.item-sub {
font-size: 0.625rem;
}
.inventar {
gap: 16px;
}
.actor-sheet fieldset {
width: 100%;
@@ -91,22 +122,30 @@
table-layout: fixed;
}
.item-sheet .tabs {
.actor-sheet .item-image {
width: 32px;
height: 32px;
}
.actor-sheet .tabs,
.item-sheet .tabs {
padding: 6px;
margin-top: 6px;
border-top: 1px solid;
border-bottom: 1px solid;
}
.item-sheet .tabs a {
.actor-sheet .tabs a,
.item-sheet .tabs a {
line-height: 18px;
}
.item-sheet .tabs a.active {
.actor-sheet .tabs a.active,
.item-sheet .tabs a.active {
text-decoration: underline;
}
.item-sheet .tabs input[type="checkbox"] {
width: 12px;
height: 12px;
}
}