-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13095 from jarbascjunior2/master
Vampiro - Sozinho na escuridão
- Loading branch information
Showing
4 changed files
with
245 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"html": "vampiro.html", | ||
"css": "vampiro.css", | ||
"authors": "jarbascjunior", | ||
"roll20userid": "Jarbits", | ||
"preview": "vampiro.png", | ||
"instructions": "Ficha de personagem de vampiro Sozinho na escuridão by 101 games." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap'); | ||
|
||
.character-sheet { | ||
background-color: #1a1a1a; | ||
padding: 20px; | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(255, 0, 0, 0.7); | ||
width: 900px; | ||
border: 2px solid #ff0000; | ||
position: relative; | ||
} | ||
|
||
.character-info { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.input-with-text-below { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-right: 10px; | ||
} | ||
|
||
.input-with-text-below input { | ||
width: 200px; | ||
padding: 10px; | ||
margin-top: 5px; | ||
border: 1px solid #ff0000; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
text-align: center; | ||
} | ||
|
||
.input-with-text-below span { | ||
color: #ff0000; | ||
font-size: 24px; /* Tamanho da fonte aumentado */ | ||
font-weight: bold; | ||
} | ||
|
||
.xp-container { | ||
display: flex; | ||
align-items: center; | ||
color: #ff0000; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.xp-container label { | ||
margin-right: 5px; | ||
font-size: 24px; /* Tamanho da fonte aumentado */ | ||
color: #ff0000; | ||
} | ||
|
||
.xp-container input { | ||
width: 50px; | ||
padding: 5px; | ||
margin: 0 5px; | ||
border: 1px solid #ff0000; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
text-align: center; | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
} | ||
|
||
.columns { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.column { | ||
width: 48%; | ||
} | ||
|
||
h2 { | ||
color: #ff0000; | ||
font-size: 28px; /* Tamanho da fonte aumentado */ | ||
text-align: center; | ||
border-bottom: 2px solid #ff0000; | ||
padding-bottom: 5px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.attribute, .attribute-split { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.button-title-attribute { | ||
padding: 10px; | ||
background-color: #000; | ||
color: #ff0000; | ||
border: 2px solid #ff0000; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
font-weight: bold; | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
margin-right: 10px; | ||
} | ||
|
||
.fake-mod { | ||
width: 50px; | ||
padding: 10px; | ||
border: 1px solid #ff0000; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
font-weight: bold; | ||
text-align: center; | ||
} | ||
|
||
.attribute-split { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
.attribute-split label { | ||
font-size: 24px; /* Tamanho da fonte aumentado */ | ||
color: #ff0000; | ||
font-weight: bold; | ||
} | ||
|
||
.attribute-split input { | ||
width: 50px; | ||
padding: 10px; | ||
margin: 0 5px; | ||
border: 1px solid #ff0000; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
text-align: center; | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
font-weight: bold; | ||
} | ||
|
||
.attribute-split span { | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
font-weight: bold; | ||
color: #ff0000; | ||
} | ||
|
||
textarea, input[type="text"], input[type="number"] { | ||
width: calc(100% - 20px); | ||
padding: 10px; | ||
margin: 10px 0; | ||
border: 1px solid #ff0000; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 20px; /* Tamanho da fonte aumentado */ | ||
font-weight: bold; | ||
} | ||
|
||
.separator-line { | ||
border-bottom: 2px solid #ff0000; | ||
margin: 20px 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<div class="character-sheet"> | ||
<div name="header" style="text-align: center;"> | ||
<img src="https://drive.usercontent.google.com/download?id=1I-HXxvTe3NrZJ5vj6R_n6vyHRsujZ62t&export=view&authuser=0" alt="Logo Vampiro: Sozinho na Escuridão"/> | ||
</div> | ||
<form> | ||
<div class="character-info"> | ||
<div class="input-with-text-below char-name"> | ||
<span>Nome</span> | ||
<input name="attr_character_name" type="text" spellcheck="false" value=""> | ||
</div> | ||
<div class="input-with-text-below char-caste"> | ||
<span>Casta</span> | ||
<input name="attr_caste" type="text" spellcheck="false" value=""> | ||
</div> | ||
<div class="input-with-text-below char-prey"> | ||
<span>Presa Favorita</span> | ||
<input name="attr_prey" type="text" spellcheck="false" value=""> | ||
</div> | ||
<div class="xp-container"> | ||
<label for="attr_xp_current">XP:</label> | ||
<input type="number" id="attr_xp_current" name="attr_xp_current" min="0" value="0"> | ||
<span>/</span> | ||
<input type="number" id="attr_xp_total" name="attr_xp_total" min="0" value="0"> | ||
</div> | ||
</div> | ||
<div class="columns"> | ||
<div class="column"> | ||
<h2>Atributos</h2> | ||
<div class="attribute"> | ||
<button type="roll" name="roll_corpo" value="/roll 1d10 + @{corpo}" class="button-title-attribute">Corpo</button> | ||
<input name="attr_corpo" type="number" spellcheck="false" maxlength="2" class="fake-mod" title="@{corpo}" value="0"> | ||
</div> | ||
<div class="attribute-split"> | ||
<label for="attr_health">Saúde:</label> | ||
<input type="number" id="attr_health_current" name="attr_health_current" min="0" value="0"> | ||
<span>/</span> | ||
<input type="number" id="attr_health_max" name="attr_health_max" min="0" value="0"> | ||
</div> | ||
<div class="attribute"> | ||
<button type="roll" name="roll_espirito" value="/roll 1d10 + @{espírito}" class="button-title-attribute">Espírito</button> | ||
<input name="attr_espírito" type="number" spellcheck="false" maxlength="2" class="fake-mod" title="@{espírito}" value="0"> | ||
</div> | ||
<div class="attribute-split"> | ||
<label for="attr_posture">Postura:</label> | ||
<input type="number" id="attr_posture_current" name="attr_posture_current" min="0" value="0"> | ||
<span>/</span> | ||
<input type="number" id="attr_posture_max" name="attr_posture_max" min="0" value="0"> | ||
</div> | ||
<div class="attribute"> | ||
<button type="roll" name="roll_mente" value="/roll 1d10 + @{mente}" class="button-title-attribute">Mente</button> | ||
<input name="attr_mente" type="number" spellcheck="false" maxlength="2" class="fake-mod" title="@{mente}" value="0"> | ||
</div> | ||
<div class="attribute-split"> | ||
<label for="attr_will">Vontade:</label> | ||
<input type="number" id="attr_will_current" name="attr_will_current" min="0" value="0"> | ||
<span>/</span> | ||
<input type="number" id="attr_will_max" name="attr_will_max" min="0" value="0"> | ||
</div> | ||
<h2>Dons das Trevas</h2> | ||
<textarea id="dark-gifts" name="attr_dark_gifts" rows="5"></textarea> | ||
</div> | ||
<div class="column"> | ||
<h2>Perícias</h2> | ||
<textarea id="skills" name="attr_skills" rows="5"></textarea> | ||
<h2>Qualidades</h2> | ||
<textarea id="qualities" name="attr_qualities" rows="5"></textarea> | ||
<h2>Pertences</h2> | ||
<textarea id="belongings" name="attr_belongings" rows="5"></textarea> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.