mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Stargate SG-1 v 1.00
Stargate SG-1 character sheet
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#Stargate SG-1 RPG Character Sheet
|
||||
|
||||
This is a character sheet for the Stargate SG-1 RPG. It features Attributes, Vitality and Wounds, Inspiration and Education, Saving Throws, Weapons and Armor, Skills, Personal Information, Languages, Mission Gear, Carrying Capacity, Class Abilities, Feat Ability, Vehicles and Vehicle Weapons, and Contacts.
|
||||
|
||||
## Author
|
||||
Written by MattBx8 (Roll20 User ID 115594).
|
||||
|
||||
## Current Version
|
||||
1.00
|
||||
|
||||
###Changelog
|
||||
|
||||
#### 1.00
|
||||
Modified Spycraft 2.0 sheet.
|
||||
|
||||
### Credit Where Credit is Due
|
||||
* The HTML of this sheet is based partially on the Spycraft 2.0 character sheet.
|
||||
|
||||
* The CSS of this sheet is from the Spycraft 2.0 War character sheet.
|
||||
|
||||
* All questions concerning this sheet should be addressed to MattBx8.
|
||||
@@ -0,0 +1,177 @@
|
||||
|
||||
.charsheet input.disabled {
|
||||
background: #000000
|
||||
}
|
||||
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 110px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.sheet-col strong.sheet-dee {
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-short {
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-input-small {
|
||||
width: 2.5em;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-input-five {
|
||||
width: 5em;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-input-ten {
|
||||
width: 10em;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-input-thirteen {
|
||||
width: 13em;
|
||||
}
|
||||
|
||||
|
||||
.charsheet input.sheet-input-fifteen {
|
||||
width: 15em;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-input-twenty {
|
||||
width: 20em;
|
||||
}
|
||||
|
||||
|
||||
.charsheet input.sheet-input-long {
|
||||
width: 30em;
|
||||
}
|
||||
|
||||
|
||||
.charsheet input.sheet-input-fourty {
|
||||
width: 40em;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-input-maxWidth {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-emptyColumn {
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-emptyColumnTen {
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
|
||||
.charsheet td.sheet-emptyRowTen {
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-emptyRowFive {
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-emptyRowFifteen {
|
||||
padding:17px;
|
||||
}
|
||||
|
||||
|
||||
.charsheet td.sheet-tinyTextLeft {
|
||||
font-size: 7pt;
|
||||
text-align: left;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-mediumTextLeft {
|
||||
font-size: 9pt;
|
||||
text-align: left;
|
||||
height: 20px;
|
||||
}
|
||||
.charsheet td.sheet-tinyTextRight {
|
||||
font-size: 7pt;
|
||||
text-align: Right;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-tinyTextCenter{
|
||||
font-size: 7pt;
|
||||
text-align: center;
|
||||
height: 10px;
|
||||
vertical-align:bottom;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-superTinyTextCenter{
|
||||
font-size: 7pt;
|
||||
text-align: center;
|
||||
height: 10px;
|
||||
vertical-align:bottom;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-smallBlackBox{
|
||||
font-size: 8pt;
|
||||
color:#FFFAF0;
|
||||
background-color:#000000;
|
||||
text-align: center;
|
||||
padding-right:6px;
|
||||
padding-left:6px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-smallBlackBoxNoPad{
|
||||
font-size: 8pt;
|
||||
color:#FFFAF0;
|
||||
background-color:#000000;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-proficienciesTable {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-proficienciesTableHeader {
|
||||
font-size: 7pt;
|
||||
padding-right: 3px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-proficienciesTableMainHeader {
|
||||
font-size: 10pt;
|
||||
text-align: left;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-mediumBlackBox{
|
||||
font-size: 10pt;
|
||||
color:#FFFAF0;
|
||||
background-color:#000000;
|
||||
text-align: center;
|
||||
padding-right:6px;
|
||||
padding-left:6px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-largeBlackBox{
|
||||
font-size: 12pt;
|
||||
color:#FFFAF0;
|
||||
background-color:#000000;
|
||||
text-align: center;
|
||||
padding-right:6px;
|
||||
padding-left:6px;
|
||||
}
|
||||
|
||||
.charsheet table td, .charsheet table th {
|
||||
font-size: 0.9em;
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.charsheet td.sheet-pageTwoTableTd{
|
||||
vertical-align:top;
|
||||
}
|
||||
|
||||
select.sheet-dtype {
|
||||
width: 60px;
|
||||
vertical-align: center;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 140 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
@@ -0,0 +1,15 @@
|
||||
{
|
||||
|
||||
"html": "StargateSG-1.html",
|
||||
|
||||
"css": "StargateSG-1.css",
|
||||
|
||||
"authors": "Written by MattBx8, shamelessly stolen from the Spycraft 2.0 character sheet by Bill Kart",\
|
||||
|
||||
"roll20userid": "115594",
|
||||
|
||||
"preview": "StargateSG-1.png",
|
||||
|
||||
"instructions": "This is a character sheet for the Stargate SG-1 RPG, a science fiction game system from Alderac Entertainment Group. Items are arranged on the digital sheet here somewhat differently than they are in the Stargate SG-1 sheet. Most items have roll buttons attached, primarily weapon attacks, saving throws and skills. All questions concerning this sheet should be addressed to MattBx8."
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user