forked from EntropiaFox/astranauta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
names.html
144 lines (120 loc) · 3.67 KB
/
names.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<!--5ETOOLS_VERSION-->
<meta charset="utf-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Names - 5etools</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/jquery-ui-slider-pips.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="favicon.png">
<script type="text/javascript" src="js/styleswitch.js"></script>
<script type="text/javascript" src="js/navigation.js"></script>
<script type="text/javascript" src="js/browsercheck.js"></script>
<style>
#listcontainer > ul > li {
max-height: initial;
}
ul.list li:hover {
background: inherit;
}
ul.list li:active {
color: inherit;
}
ul.list a:hover {
background: lightgrey;
}
ul {
margin-left: 0;
padding-left: 0;
}
ul.list li {
max-height: none;
}
span.name {
user-select: none;
font-weight: bold;
font-size: 1.2em;
}
ul.names > li {
border-bottom: none;
margin-bottom: 5px;
}
ul.names > li > ul > li:last-child {
border-bottom: none;
}
#listcontainer {
flex: 3;
}
#tablecontainer {
flex: 7;
display: flex;
flex-direction: column;
}
#contentwrapper {
overflow-y: auto;
}
.search-box {
flex-shrink: 0;
margin-bottom: 5px;
}
.rolltable {
display: flex;
}
</style>
</head>
<body>
<div class="viewport-wrapper">
<header class="hidden-xs hidden-sm page__header">
<div class="container">
<h1 class="page__title">Names</h1>
<p class="page__subtitle">Choose a race and a type, then roll the dice!</p>
</div>
</header>
<nav class="container page__nav" id="navigation">
<ul class="nav page__nav-inner" id="navbar">
</ul>
</nav>
<div class="cancer__wrp-leaderboard"><!--5ETOOLS_AD_LEADERBOARD--></div>
<div class="cancer__wrp-sidebar-rhs cancer__wrp-sidebar-rhs--single"><!--5ETOOLS_AD_RIGHT_1--></div>
<div class="container view-col-wrapper">
<div class="view-col" id="listcontainer">
<div class="input-group search-box">
<input type="search" id="search" autocomplete="off" autocapitalize="off" spellcheck="false" class="search form-control" placeholder="Find race...">
<span class="input-group-btn">
<button class="btn btn-default reset" id="reset" type="button">Reset</button>
</span>
</div>
<ul class="list names">
<!-- populate with JS -->
</ul>
</div>
<div class="view-col" id="tablecontainer">
<div class="rolltable" id="contentwrapper">
<table id="pagecontent" class="stats stats--book stats--book-large">
<!-- populate with JS -->
</table>
</div>
</div>
</div>
</div> <!--5ETOOLS_SCRIPT_ANCHOR-->
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/utils-ui.js"></script>
<script type="text/javascript" src="lib/localforage.js"></script>
<script type="text/javascript" src="js/omnidexer.js"></script>
<script type="text/javascript" src="js/omnisearch.js"></script>
<script type="text/javascript" src="js/render.js"></script>
<script type="text/javascript" src="js/scalecreature.js"></script>
<script type="text/javascript" src="js/hist.js"></script>
<script type="text/javascript" src="js/names.js"></script>
<script type="text/javascript" src="js/list2.js"></script>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/jquery-ui.js"></script>
<script type="text/javascript" src="lib/jquery-ui-slider-pip.js"></script>
<script type="text/javascript" src="lib/elasticlunr.js"></script>
</body>
</html>