mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Delve
A simple character sheet for a simple skill-based d6 system.
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
@@ -0,0 +1,59 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Audiowide);
|
||||
|
||||
@font-face {
|
||||
font-family: 'Audiowide';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('http://fonts.gstatic.com/s/audiowide/v3/yGcwRZB6VmoYhPUYT-mEow.ttf') format('truetype');
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
border-bottom: 40px solid black;
|
||||
border-right: 15px solid transparent;
|
||||
height: 0;
|
||||
display: inline-block;
|
||||
font-family: 'Audiowide';
|
||||
}
|
||||
|
||||
label.sheet-primary-attribute {
|
||||
}
|
||||
|
||||
label.sheet-secondary-attribute {
|
||||
}
|
||||
|
||||
div.sheet-section {
|
||||
border: 1px solid #000000;
|
||||
}
|
||||
|
||||
div.sheet-damage {
|
||||
width: 14%;
|
||||
}
|
||||
|
||||
input.sheet-gift, input.sheet-fault {
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
margin: 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-o-box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background: #cccccc;
|
||||
}
|
||||
|
||||
fieldset:nth-child(even) {
|
||||
background: #cccccc;
|
||||
}
|
||||
|
||||
.sheet-span-header
|
||||
{
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
|
||||
margin: 0;
|
||||
padding: 4px;
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
<h1 style="text-align:left">Delve</h1>
|
||||
|
||||
<br>
|
||||
|
||||
<div class='sheet-4colrow'>
|
||||
<div class='sheet-col'>
|
||||
<label>Name</label>
|
||||
<label>Gender</label>
|
||||
<label>HP</label>
|
||||
</div>
|
||||
<div class='sheet-col'>
|
||||
<input type="text"/><br>
|
||||
<input type="text"/><br>
|
||||
<input type="text"/>
|
||||
</div>
|
||||
<div class='sheet-col'>
|
||||
<label>Age</label>
|
||||
<label>Race</label>
|
||||
<label>Level</label>
|
||||
</div>
|
||||
<div class='sheet-col'>
|
||||
<input type="text"/><br />
|
||||
<input type="text"/><br />
|
||||
<input type="text"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<h2>Skills</h2>
|
||||
<fieldset class="repeating_skills repitem">
|
||||
<div class='sheet-4colrow'>
|
||||
<input type="text" style='width: 34%'>
|
||||
<input type="number" style="width: 6%;" value="0">
|
||||
<input type="text" style='width: 34%'>
|
||||
<input type="number" style="width: 6%;"value="0">
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<h2>Inventory</h2>
|
||||
<fieldset class="repeating_skills repitem">
|
||||
<div class='sheet-4colrow'>
|
||||
<input type="text" style='width: 40.5%'>
|
||||
<input type="text" style='width: 40.5%'>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class='sheet-2colrow'>
|
||||
<div class='sheet-col' style='width: 80.3%'>
|
||||
<h2>Notes</h2>
|
||||
<textarea></textarea>
|
||||
</div>
|
||||
<div class='sheet-col' style='width: 20%'>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user