diff --git a/Space1889/Historie.txt b/Space1889/Historie.txt index acf54426bc..fa57fd94a3 100644 --- a/Space1889/Historie.txt +++ b/Space1889/Historie.txt @@ -1,3 +1,8 @@ +2022-05-21 +- Release v1.1 +- Design : Beschriftungen der Felder optimiert +- Design : Umstellung auf Table-Design + 2022-05-18 - Bugfix Issue #1: Berechnung Wahrnehmung - Bugfix Issue #2: Fehlerhafte Formel bei der Erfolgsberechnung diff --git a/Space1889/README.md b/Space1889/README.md index fbb1c46ef6..74fa0274ba 100644 --- a/Space1889/README.md +++ b/Space1889/README.md @@ -2,7 +2,7 @@ Bei diesem Community-Bogen handelt es sich um ein rein privates Fan-Projekt. -## 2022-05-19 V1.0.2 +## 2022-05-21 V1.1 Community-Bogen für Space 1889 (Ubiquity) Github - https://github.com/Gorthian/Roll20_Space1889_CharacterSheet diff --git a/Space1889/space1889.css b/Space1889/space1889.css index 4978f114a6..371ab7f82e 100644 --- a/Space1889/space1889.css +++ b/Space1889/space1889.css @@ -1,7 +1,7 @@ /* EDITED by Gorthian - Version 1.0.2 - Letzte Änderung 2022-05-19 + Version 1.1 + Letzte Änderung 2022-05-21 GitHub https://github.com/Gorthian/Roll20_Space1889_CharacterSheet Wiki https://github.com/Gorthian/Roll20_Space1889_CharacterSheet/wiki @@ -43,7 +43,8 @@ div.sheet-content { "primary-attributes secondary-attributes" "style health" "skills skills" - "combat misc" + "combat combat" + "misc misc" } div.sheet-basics { @@ -103,6 +104,22 @@ div.sheet-combat { div.sheet-misc { display : grid; grid-area : misc; + grid-template-areas : "talents ressources weaknesses" +} + +div.sheet-talents { + display : grid; + grid-area : talents; +} + +div.sheet-ressources { + display : grid; + grid-area : ressources; +} + +div.sheet-weaknesses { + display : grid; + grid-area : weaknesses; } div.sheet-footer { @@ -120,23 +137,6 @@ div.sheet-box { margin : 5px; } -div.sheet-skillentry { - display : flex; -} - -div.sheet-weaponentry { - display : flex; - flex-wrap : wrap; -} - -div.sheet-weaponattribute { - display : flex; - flex-direction : column; - justify-content : center; - text-align : center; - margin : 2px; -} - :is(div.sheet-weaponattribute, div.sheet-skillentry) select{ width : auto; } @@ -147,6 +147,24 @@ div.sheet-space1889 div.sheet-content :is(input, select, button) { padding : 4px; } +div.sheet-table { + display : table; + width : 100%; +} + +div.sheet-table-row { + display : table-row; + width : 100%; +} + +div.sheet-table-col { + display : table-cell; +} + +hr { + border-color : black; +} + /* Chrome, Safari, Edge, Opera */ input:read-only:-webkit-outer-spin-button, input:read-only::-webkit-inner-spin-button { diff --git a/Space1889/space1889.html b/Space1889/space1889.html index 5601e930ac..5ce2625630 100644 --- a/Space1889/space1889.html +++ b/Space1889/space1889.html @@ -1,7 +1,7 @@