-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
95 lines (91 loc) · 4.35 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!--
Créditos ao criador da fonte/Credits to the font creator
https://br.maisfontes.com/suez-one
-->
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-language" content="pt-br">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description"
content="Role dados de diferentes tipos, como D3,D10,D20 e outros, e identifique seu tipo de sucesso baseado no sistema de RPG adaptado por Rafael Lange(Cellbit).">
<meta name="keywords" content="ordem paranormal, rpg, dados, d20, desconjuração">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="config/logo-ordem-branca-icon.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Suez+One&display=swap" rel="stylesheet">
<title>Sorteios de Dados</title>
</head>
<body>
<div class="top">
<img src="config/logo-ordem-branca.png" alt="Logo da Ordo Realitas" title="Logo da Ordu Realitas">
<h2>Perfil de Investigador</h2>
</div>
<section class="main">
<section class="forms">
<div class="title">
<h2>ROLAR D20</h2>
</div>
<form>
<label for="number">Valor da Habilidade:</label>
<input type="number" name="number" id="number" min="1" max="20"
placeholder="Digite aqui o n° da sua perícia">
<p id="error" class="error">Digite apenas valores de 1 a 20</p>
<button type="button" name="button" id="button">Rolar</button>
<input type="text" name="result" class="result" id="result" disabled="" placeholder="Seu resultado...">
</form>
<div class="title titleDothers">
<h2 style="font-size:100%;">OUTROS DADOS(D3,D6,ETC.)</h2>
</div>
<form>
<label for="complimentary-dice-select">Dados Complementares:</label>
<select name="d#" id="complimentary-dice-select">
<option value="1d2">1D2</option>
<option value="1d3">1D3</option>
<option value="1d4">1D4</option>
<option value="1d5">1D5</option>
<option value="1d6">1D6</option>
<option value="1d8">1D8</option>
<option value="1d10">1D10</option>
<option value="1d12">1D12</option>
<option value="1d20">1D20</option>
<option value="1d100">1D100</option>
<option value="2d4">2D4</option>
<option value="2d6">2D6</option>
<option value="2d8">2D8</option>
<option value="2d10">2D10</option>
<option value="1d3+1d4">1D3+1D4</option>
</select>
<button type="button" name="dbutton" id="dbutton">Rolar</button>
<input type="text" name="dresult" class="result" id="dresult" disabled=""
placeholder="Seu resultado...">
</form>
</section>
<section class="table">
<div class="title titleTable" style="border-bottom:none;">
<h2>HISTÓRICO</h2>
</div>
<table id="table">
<thead>
<tr id="trFirst">
<td>#</td>
<td>Expressão</td>
<td>Resultados</td>
<td>Total</td>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
</section>
<p class="link" style="margin-top:7%;"><a href="config/odpdados.zip"
download="Basta clicar 2 vezes no index para rodar." style="font-size:70%">Caso o site esteja lento ou com
problemas, você pode fazer o download do site por aqui. Basta rodar o arquivo com nome "index"</p>
<p class="link"><a href="https://twitter.com/0hora_" target="_blank">Twitter do criador</a></p>
<script src="/function.js" type="module"></script>
</body>
</html>