diff --git a/GODSEND-Agenda/Readme.md b/GODSEND-Agenda/Readme.md index 8d0d89401b..8cc4f1637b 100644 --- a/GODSEND-Agenda/Readme.md +++ b/GODSEND-Agenda/Readme.md @@ -5,7 +5,7 @@ Created with PUGjs and SASS by [Andreas J.](https:wiki.roll20.net/Anduh). ## Changelog -### v.1.3.1 +### v.1.3.0 - several visual fixes - diff --git a/GODSEND-Agenda/img/logo-atlantis.png b/GODSEND-Agenda/img/logo-atlantis.png new file mode 100644 index 0000000000..536967f0f3 Binary files /dev/null and b/GODSEND-Agenda/img/logo-atlantis.png differ diff --git a/GODSEND-Agenda/img/logo-hellas.png b/GODSEND-Agenda/img/logo-hellas.png new file mode 100644 index 0000000000..57f7e1e9af Binary files /dev/null and b/GODSEND-Agenda/img/logo-hellas.png differ diff --git a/GODSEND-Agenda/img/logo-talislanta.png b/GODSEND-Agenda/img/logo-talislanta.png new file mode 100644 index 0000000000..06c353cb7b Binary files /dev/null and b/GODSEND-Agenda/img/logo-talislanta.png differ diff --git a/GODSEND-Agenda/sheet.css b/GODSEND-Agenda/sheet.css index f67b720f4f..1a32a07d0b 100644 --- a/GODSEND-Agenda/sheet.css +++ b/GODSEND-Agenda/sheet.css @@ -157,6 +157,7 @@ border: 2px black; border-style: none none solid none; width: var(--sheetwidth); + height: 99px; } .charsheet div.tab-buttons button { font-size: 1.5em; @@ -164,6 +165,18 @@ .charsheet div.tab-buttons select { width: 90px; } +.charsheet div.tab-buttons h1.godsend { + background: no-repeat center/100% url("https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/GODSEND-Agenda/img/logo.jpg"); +} +.charsheet div.tab-buttons h1.atlantis { + background: no-repeat center/100% url("https://raw.githubusercontent.com/Anduh/roll20-character-sheets/godsend-agenda-1-3/GODSEND-Agenda/img/logo-atlantis.png"); +} +.charsheet div.tab-buttons h1.hellas { + background: no-repeat center/100% url("https://raw.githubusercontent.com/Anduh/roll20-character-sheets/godsend-agenda-1-3/GODSEND-Agenda/img/logo-hellas.png"); +} +.charsheet div.tab-buttons h1.talislanta { + background: no-repeat center/100% url("https://raw.githubusercontent.com/Anduh/roll20-character-sheets/godsend-agenda-1-3/GODSEND-Agenda/img/logo-talislanta.png"); +} .charsheet div.tab-buttons h1 { display: none; } @@ -172,6 +185,8 @@ .charsheet div.tab-buttons input[value=hellas] ~ h1.hellas, .charsheet div.tab-buttons input[value=atlantis] ~ h1.atlantis { display: flex; + height: 99px; + width: 612px; } .charsheet .border { border-style: solid; @@ -194,7 +209,6 @@ border: none; background: white; opacity: 0.9; - min-height: 90%; max-width: 750px; } .charsheet .gap { @@ -233,10 +247,10 @@ display: grid; grid-gap: 4px; grid-template-columns: 5fr 4fr; - grid-template-rows: 65px 40px 162px auto; - grid-template-areas: "common common" "points points" "attrs notes" "skills notes"; + grid-template-rows: 65px 40px 162px auto 100px; + grid-template-areas: "common common" "points points" "attrs notes" "skills notes" "footer footer"; width: var(--sheetwidth); - height: 1300px; + height: auto; position: relative; } .charsheet section.common { @@ -360,6 +374,10 @@ .charsheet section.notes textarea { height: 90px; } +.charsheet section.footer { + grid-area: footer; + background: no-repeat center/100% url("https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/GODSEND-Agenda/img/result-chart.jpg"); +} .charsheet main.notes { display: grid; width: 750px; @@ -369,6 +387,9 @@ .charsheet main.notes h2 { grid-column: span 2; } +.charsheet main.notes section { + height: auto; +} .charsheet main.settings { display: grid; width: 750px; diff --git a/GODSEND-Agenda/sheet.html b/GODSEND-Agenda/sheet.html index 5b8a026f98..0469350a58 100644 --- a/GODSEND-Agenda/sheet.html +++ b/GODSEND-Agenda/sheet.html @@ -4,10 +4,10 @@