forked from Roll20/roll20-character-sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
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 Roll20#13154 from jarbascjunior2/master
Bruxo - Pacto das sombras
- Loading branch information
Showing
4 changed files
with
255 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,179 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap'); | ||
|
||
.character-sheet { | ||
font-family: 'Cinzel', serif; | ||
background-color: #1a1a1a; | ||
padding: 20px; | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(255, 140, 0, 0.7); | ||
width: 900px; | ||
border: 2px solid #674ea7; | ||
position: relative; | ||
color: #fff; | ||
margin: 0 auto; | ||
} | ||
|
||
.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 #674ea7; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 16px; | ||
text-align: center; | ||
} | ||
|
||
.input-with-text-below span { | ||
color: #674ea7; | ||
font-size: 18px; | ||
font-weight: bold; | ||
} | ||
|
||
.xp-container { | ||
display: flex; | ||
align-items: center; | ||
color: #674ea7; | ||
} | ||
|
||
.xp-container label { | ||
margin-right: 5px; | ||
} | ||
|
||
.xp-container input { | ||
width: 50px; | ||
padding: 5px; | ||
margin: 0 5px; | ||
border: 1px solid #674ea7; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
text-align: center; | ||
font-size: 16px; | ||
} | ||
|
||
.columns { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.column { | ||
width: 48%; | ||
} | ||
|
||
h2 { | ||
margin-top: 0; | ||
color: #674ea7; | ||
font-size: 24px; | ||
text-align: center; | ||
} | ||
|
||
textarea, input[type="text"], input[type="number"] { | ||
width: calc(100% - 20px); | ||
padding: 10px; | ||
margin: 0 10px; | ||
border: 1px solid #674ea7; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 18px; | ||
font-weight: bold; | ||
} | ||
|
||
.attribute-split { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.attribute-split input { | ||
width: 50px; | ||
margin: 0; | ||
} | ||
|
||
.attribute-split span { | ||
margin: 0 5px; | ||
font-size: 18px; | ||
font-weight: bold; | ||
color: #674ea7; | ||
} | ||
|
||
button { | ||
width: calc(100% - 20px); | ||
padding: 15px; | ||
background-color: #000; | ||
color: #674ea7; | ||
border: 2px solid #674ea7; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
font-weight: bold; | ||
font-size: 18px; | ||
margin: 10px; | ||
} | ||
|
||
button:hover { | ||
background-color: #333; | ||
} | ||
|
||
.attribute { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
.button-title-attribute { | ||
width: 100%; | ||
padding: 10px; | ||
background-color: #000; | ||
color: #674ea7; | ||
border: 2px solid #674ea7; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
font-weight: bold; | ||
font-size: 16px; | ||
} | ||
|
||
.fake-mod { | ||
width: 60px; | ||
padding: 10px; | ||
margin-top: 10px; | ||
border: 1px solid #674ea7; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 18px; | ||
font-weight: bold; | ||
text-align: center; | ||
} | ||
|
||
label { | ||
color: #674ea7; | ||
font-size: 18px; | ||
font-weight: bold; | ||
} | ||
|
||
input[type="number"] { | ||
width: 100px; | ||
padding: 10px; | ||
margin-top: 5px; | ||
border: 1px solid #674ea7; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 18px; | ||
font-weight: bold; | ||
text-align: center; | ||
} |
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,68 @@ | ||
<div class="character-sheet"> | ||
<div name="header" style="text-align: center;"> | ||
<img src="https://drive.usercontent.google.com/download?id=1dCpCDcN3mZj-mr8BgeiUpPvTUpWKa4Q5&export=download&authuser=0" alt="Logo Bruxo - Pacto das Sombras"/> | ||
</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-pact"> | ||
<span>Pacto</span> | ||
<input name="attr_pact" 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="{{title=**@{character_name}**}}{{Teste de Corpo: [[?{Modo de Rolagem|Normal,1d10|Vantagem,2d10kh1|Desvantagem,2d10kl1} + @{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="{{title=**@{character_name}**}}{{Teste de Espírito: [[?{Modo de Rolagem|Normal,1d10|Vantagem,2d10kh1|Desvantagem,2d10kl1} + @{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="{{title=**@{character_name}**}}{{Teste de Mente: [[?{Modo de Rolagem|Normal,1d10|Vantagem,2d10kh1|Desvantagem,2d10kl1} + @{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>Feitiços</h2> | ||
<textarea id="spells" name="attr_spells" rows="5" style="text-align: left;"></textarea> | ||
</div> | ||
<div class="column"> | ||
<h2>Perícias</h2> | ||
<textarea id="skills" name="attr_skills" rows="5" style="text-align: left;"></textarea> | ||
<h2>Qualidades</h2> | ||
<textarea id="qualities" name="attr_qualities" rows="5" style="text-align: left;"></textarea> | ||
<h2>Pertences</h2> | ||
<textarea id="belongings" name="attr_belongings" rows="5" style="text-align: left;"></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.
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": "bruxo.html", | ||
"css": "bruxo.css", | ||
"authors": "jarbascjunior", | ||
"roll20userid": "Jarbits", | ||
"preview": "bruxo.png", | ||
"instructions": "Ficha de personagem de Bruxo Pacto das Sombras by 101 games." | ||
} |