Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "Designing Character Sheet Layout"

From Roll20 Wiki

Jump to: navigation, search
(grid-template-areas example, update roll20 col/rows)
m (CSS Grid)
 
(5 intermediate revisions by one user not shown)
Line 1: Line 1:
{{pro only}}{{NavSheetDoc}}
+
{{revdate}}{{BCS|page}}
''Main Article:'' '''[[Building Character Sheets]]'''
+
  
This is a general guide to different approaches/methods you can use to create the general layout of your custom character sheets.
+
This is a general guide to different approaches/methods people use for designing layouts on Roll20 character sheets.
 +
{{NavSheetDoc}}
 +
{{notebox|These examples should work for both [[Character Sheet Enhancement]] and [[Legacy Sheet]] frameworks.}}
  
{{orange| These tips & examples are made to work with [[Legacy Sheet]], but should now also work with [[CSE]]-sheets. See the [[Character Sheet Enhancement]]-page for more info. [[User:1223200|1223200]] ([[User:1223200|1223200]] ([[User talk:1223200|talk]]) 17:03, 23 May 2021 (UTC)}}
+
= Layout Methods =
 
+
Here are some of the popular approaches/frameworks that people use for designing HTML/CSS layouts, with examples on Roll20 character sheets.
= Layout Types =
+
The four main approaches/frameworks that people use for designing layouts on Roll20 character sheets.
+
  
 
See [[#Sheet  Templates]] for more comprehensive examples of sheets using these methods.
 
See [[#Sheet  Templates]] for more comprehensive examples of sheets using these methods.
  
 +
Check [https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook CSS Layout cookbook]
 
== CSS Grid ==
 
== CSS Grid ==
 
Many newer character sheet use CSS Grid for their layout, and is the recommended method doing the general layout of sections on a sheet. Aligning things in a grid, by using rows & columns is great, and you can have elements overlap and even span several "spots" on the grid. Many tend to use [[#CSS Flexbox|flexbox]] for styling inside individual sections/blocks on the sheet, if grid seems overkill.
 
Many newer character sheet use CSS Grid for their layout, and is the recommended method doing the general layout of sections on a sheet. Aligning things in a grid, by using rows & columns is great, and you can have elements overlap and even span several "spots" on the grid. Many tend to use [[#CSS Flexbox|flexbox]] for styling inside individual sections/blocks on the sheet, if grid seems overkill.
Line 18: Line 18:
 
* [https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout CSS Grid Layout] MDN Web docs
 
* [https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout CSS Grid Layout] MDN Web docs
 
* {{fpl|9973786/ sheet example on converting from table to CSS Grid}}
 
* {{fpl|9973786/ sheet example on converting from table to CSS Grid}}
 +
* https://cybersphere.me/dont-use-table-use-grid/ blogpost by [[GiGs]]
  
 
{{ex}}
 
{{ex}}
Line 164: Line 165:
 
   flex-wrap: wrap;
 
   flex-wrap: wrap;
 
   align-items: center;
 
   align-items: center;
 +
}
 +
</pre>
 +
 +
==Multiple-column layout==
 +
See more at: [https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Multiple-column_Layout Multiple-column layout]
 +
 +
<pre data-language="html">
 +
<div class="sheet-container">
 +
  <span>1st</span>
 +
  <span>2nd</span>
 +
  <span>3rd</span>
 +
</div>
 +
</pre>
 +
 +
<pre data-language="css">
 +
.charsheet .sheet-container {
 +
  column-count: 3;
 
}
 
}
 
</pre>
 
</pre>
  
 
== Roll20 columns/rows ==
 
== Roll20 columns/rows ==
Okay for basic layouts, but if you aim for a more complex/sofisticated layout/design, CSS Grid and/or CSS Flexbox is recommended.
+
Okay for basic layouts, but if you aim for a more complex/sophisticated layout/design, CSS Grid and/or CSS Flexbox is recommended.
  
 
Roll20 provides a few basic classes you can use to organize things into a simple column-based layout. To use them, just create a div with classnames such as  <code>sheet-3colrow</code>, <code>sheet-2colrow</code>, or <code>sheet-row</code>. Then inside of that div, create a div for each column with a class of <code>sheet-col</code>. For example, to create a 3-column layout:
 
Roll20 provides a few basic classes you can use to organize things into a simple column-based layout. To use them, just create a div with classnames such as  <code>sheet-3colrow</code>, <code>sheet-2colrow</code>, or <code>sheet-row</code>. Then inside of that div, create a div for each column with a class of <code>sheet-col</code>. For example, to create a 3-column layout:
<pre data-language="html" style="overflow:auto;white-space:pre-wrap;">
+
<pre data-language="html">
 
<div class="sheet-3colrow">
 
<div class="sheet-3colrow">
 
   <div class="sheet-col">
 
   <div class="sheet-col">
Line 199: Line 217:
  
 
You can then further style & adjust then in the CSS:
 
You can then further style & adjust then in the CSS:
<pre data-language="css" style="overflow:auto;white-space:pre-wrap;">
+
<pre data-language="css">
 
.charsheet .sheet-col{
 
.charsheet .sheet-col{
 
   background: grey;
 
   background: grey;
Line 219: Line 237:
  
 
Older sheets using tables do exist in the Roll20 character sheet repository, but they where created before the rule was set in place. These older sheets shouldn't be used as templates for your own designs, instead pick more recently created sheets, or some [[Building_Character_Sheets#Complete_Example|suggested here]].
 
Older sheets using tables do exist in the Roll20 character sheet repository, but they where created before the rule was set in place. These older sheets shouldn't be used as templates for your own designs, instead pick more recently created sheets, or some [[Building_Character_Sheets#Complete_Example|suggested here]].
 +
<br><br><br>
  
=Pages =
+
 
 +
=Sheet Components=
 
[[File:Sheet-with-pages-example.gif|right|thumbnail|400px|sheet with multiple pages/tabs]]
 
[[File:Sheet-with-pages-example.gif|right|thumbnail|400px|sheet with multiple pages/tabs]]
 +
==Pages ==
 
''Example:'' '''[[CSS_Wizardry#Tabs|Tabs]]'''
 
''Example:'' '''[[CSS_Wizardry#Tabs|Tabs]]'''
  
Line 227: Line 248:
  
 
The section above also show how you can hide areas with checkboxes, useful for temporally hiding/expanding some section for displaying more info.
 
The section above also show how you can hide areas with checkboxes, useful for temporally hiding/expanding some section for displaying more info.
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
 
<br>
 
<br>
 
<br>
 
<br>
  
=Images=
+
==Images==
''Main Article:'' '''[[Image use in character sheets]] '''
+
{{main|Image use in character sheets}}
  
 
You'll likely want to use images to improve the looks of a sheet, and there are a few example of how to do so, like displaying a logo or having a nice background.
 
You'll likely want to use images to improve the looks of a sheet, and there are a few example of how to do so, like displaying a logo or having a nice background.
 +
 +
This might even include showing the characters [[Image_use_in_character_sheets#Avatar_.26_Token|Avatar or Token]] on the sheet.
 +
 +
==[[BCS/Repeating_Sections#Styling_Repeating_Sections|Repeating Sections]]==
 +
 +
If you use [[BCS/Rep|repeating sections]] on your sheet, styling and planing how your design them can have a large impact on sheet layout, requiring a flexible design if users want lots of entries.
 +
 +
  
 
= Sheet Templates =
 
= Sheet Templates =
Line 256: Line 280:
 
** [[Creating Roll Templates]] - How to design Roll templates, and info on how the default rolltemplate works
 
** [[Creating Roll Templates]] - How to design Roll templates, and info on how the default rolltemplate works
 
** [[Building_Character_Sheets#Best_Practices | Sheet Design Best Practices]]
 
** [[Building_Character_Sheets#Best_Practices | Sheet Design Best Practices]]
** '''[[:Category:Character Sheet Creation|List of all pages related to "Character Sheet Creation"]]'''
+
** '''[[:Category:Character Sheet Creation]]'''
 
* [[Sheet Author Tips]] More advanced tips for creating/maintaining sheets, workflow, & useful tools
 
* [[Sheet Author Tips]] More advanced tips for creating/maintaining sheets, workflow, & useful tools
 
** [[Custom Sheet Sandbox|Sheet Sandbox]] – the better editor to use when you code your character sheets
 
** [[Custom Sheet Sandbox|Sheet Sandbox]] – the better editor to use when you code your character sheets

Latest revision as of 05:30, 5 April 2022

This is a general guide to different approaches/methods people use for designing layouts on Roll20 character sheets.


Contents

[edit] Layout Methods

Here are some of the popular approaches/frameworks that people use for designing HTML/CSS layouts, with examples on Roll20 character sheets.

See #Sheet Templates for more comprehensive examples of sheets using these methods.

Check CSS Layout cookbook

[edit] CSS Grid

Many newer character sheet use CSS Grid for their layout, and is the recommended method doing the general layout of sections on a sheet. Aligning things in a grid, by using rows & columns is great, and you can have elements overlap and even span several "spots" on the grid. Many tend to use flexbox for styling inside individual sections/blocks on the sheet, if grid seems overkill.


Example:

<div class="sheet-grid-section">
  <span>1st span</span>
  <span>2nd</span>
  <span>3rd</span>
  <span>4th, stuff</span>
  <span>5th, other</span>
  <span>6th</span>
</div>
.charsheet .sheet-grid-section{
  display: grid;
  grid-template-columns: 600px 300px;
  grid-template-rows: 150px 150px 150px;
}

[edit] grid-template-areas

grid-template-areas can be used for naming sheet sections and then easily display in a human-readable way how each section is positioned in the grid. The drawback is that you can't have sections that overlap with each-other using this.

<div class="sheet-grid-section">
  <div class="sheet-namelvl sheet-block">
    <label>Name</label>
  </div>
  <div class="sheet-hp sheet-block">
    <span>HP</span>
  </div>
  <div class="sheet-stat sheet-block">
    <h3>Main Stat</h3>
  </div>
  <div class="sheet-skills sheet-block">
    <h3>Skills</h3>
    <label><button name="roll_str" value="/r 1d6+@{str}" type="roll"></button> strength <input type="number" name="attr_str"></label>
    <label><button name="roll_agi" value="/r 1d6+@{agi}" type="roll"></button> agility <input type="number" name="attr_agi"></label>
    <label><button name="roll_mind" value="/r 1d6+@{mind}" type="roll"></button> mind <input type="number" name="attr_mind"></label>
  </div>
  <div class="sheet-equip sheet-block">
    <h3>Equipment</h3>
  </div>
  <div class="sheet-notes sheet-block">
    <h3>Notes</h3>
  </div>
</div>
Simple sheet layout using grid-template-areas
.charsheet .sheet-grid-section{
  display: grid;
  grid-template-columns: 400px 200px;
  grid-template-rows:  60px 150px 150px 150px;
  grid-template-areas:"namelvl hp     "
                      "skills  stat   "
                      "skills  equip  "
                      "notes   equip  ";
  grid-gap: 5px;
}
.charsheet div.sheet-block{
  display: grid;
  justify-content: center;
  padding: 5px;
  border: 3px solid black;
}
.charsheet div.sheet-namelvl{
  grid-area: namelvl;
}
.charsheet div.sheet-hp{
  grid-area: hp;
}
.charsheet div.sheet-stat{
  grid-area: stat;
}
.charsheet div.sheet-skills{
  grid-area: skills;
}
.charsheet div.sheet-equip{
  grid-area: equip;
}
.charsheet div.sheet-notes{
  grid-area: notes;
}

[edit] Subgrid

Subgrid is only available for Firefox, but when it's released for Chrome sheet design will get more easy as you can use the main grid lines in children, making it easier to align sub-components with main components of the sheet.

You can implement subgrid in sheets, and then create a fallback design, in case the browser doesn't support CSS Subgrid.

<div class="sheet-grid">
  <div class="sheet-item">
    <div class="sheet-subitem"></div>
  </div>
</div>
.charsheet .sheet-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(4, minmax(100px, auto));
}

.charsheet .sheet-item {
  display: grid;
  grid-column: 2 / 7;
  grid-row: 2 / 4;
  grid-template-columns: subgrid;
  grid-template-rows: repeat(3, 80px);
}

.charsheet .sheet-subitem {
  grid-column: 3 / 6;
  grid-row: 1 / 3;
}

[edit] CSS Flexbox

CSS Flexbox guide

Flexbox is a good way to align elements in rows or columns that flex and wraps around to new rows depending on the elements. Better than using the old float: right; method of aligning things. Some sheet authors use CSS Grid for bigger elements and gid-like sections of a sheet, while using Flexbox for smaller components in the sheet.

Flexbox Froggy is a great training game for learning about Flexbox.

<div class="sheet-flex-section">
  <span>1st</span>
  <span>2nd</span>
  <span>3rd</span>
  <span>4th</span>
  <span>5th</span>
  <span>6th</span>
</div>
.charsheet .sheet-flex-section{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

[edit] Multiple-column layout

See more at: Multiple-column layout

<div class="sheet-container">
  <span>1st</span>
  <span>2nd</span>
  <span>3rd</span>
</div>
.charsheet .sheet-container {
  column-count: 3;
}

[edit] Roll20 columns/rows

Okay for basic layouts, but if you aim for a more complex/sophisticated layout/design, CSS Grid and/or CSS Flexbox is recommended.

Roll20 provides a few basic classes you can use to organize things into a simple column-based layout. To use them, just create a div with classnames such as sheet-3colrow, sheet-2colrow, or sheet-row. Then inside of that div, create a div for each column with a class of sheet-col. For example, to create a 3-column layout:

<div class="sheet-3colrow">
  <div class="sheet-col">
    <h2>Skills</h2>
    <label>str</label>
    <input type="number" name="attr_str">
    <label>agi</label>
    <input type="number" name="attr_agi">
    <label>mind</label>
    <input type="number" name="attr_mind">
  </div>

  <div class="sheet-col">
    <h2>Main Stats</h2>
    <label>hp</label>
    <input type="number" name="attr_hp">
    <label>defence</label>
    <input type="number" name="attr_defence">
  </div>

  <div class="sheet-col">
    <h2>Equipment</h2>
    <textarea name="attr_equip"></textarea>
  </div>
</div>

You can then further style & adjust then in the CSS:

.charsheet .sheet-col{
  background: grey;
}

The it's not clear what the css for these are, so styling gets harder the more changes you try to make on how they look. It's better to switch to use Flexbox/CSS Grid eventually.

You can use browser tools to inspect and figure out how the css for these columns & rows work.

[edit] HTML Table

Using <table> is the fourth, and least recommended method, for designing basic sheet layout.

Many older sheet use HTML tables for layout, but it's harder to customize and adjust to looks of it compared to other methods, so it's generally not seen as a good idea for sheet layout.


Older sheets using tables do exist in the Roll20 character sheet repository, but they where created before the rule was set in place. These older sheets shouldn't be used as templates for your own designs, instead pick more recently created sheets, or some suggested here.



[edit] Sheet Components

sheet with multiple pages/tabs

[edit] Pages

Example: Tabs

When trying to mimic the paper-version of the sheet, or the sheet starts to become too long, it's a good idea to split up content into separate tabs/pages, see Tabs.

The section above also show how you can hide areas with checkboxes, useful for temporally hiding/expanding some section for displaying more info.

[edit] Images

Main Page: Image use in character sheets

You'll likely want to use images to improve the looks of a sheet, and there are a few example of how to do so, like displaying a logo or having a nice background.

This might even include showing the characters Avatar or Token on the sheet.

[edit] Repeating Sections

If you use repeating sections on your sheet, styling and planing how your design them can have a large impact on sheet layout, requiring a flexible design if users want lots of entries.


[edit] Sheet Templates

There exist a couple of character sheet templates that are intended as a starting point for character sheet creations.

[edit] See Also