-
Notifications
You must be signed in to change notification settings - Fork 77
/
demo-two-column-inlined.html
402 lines (363 loc) · 11.6 KB
/
demo-two-column-inlined.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html>
<html><head><meta charset="utf-8"/><title>Two-column statblock example</title><link href="//fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic" rel="stylesheet" type="text/css"/><link href="//fonts.googleapis.com/css?family=Libre+Baskerville:700" rel="stylesheet" type="text/css"/><style>
body {
margin: 0;
}
stat-block {
/* A bit of margin for presentation purposes, to show off the drop
shadow. */
margin-left: 20px;
margin-top: 20px;
}
</style><script>function createCustomElement(name, contentNode, elementClass = null) {
if(elementClass === null) {
customElements.define(name,
class extends HTMLElement {
constructor() {
super();
this.attachShadow({mode: 'open'})
.appendChild(contentNode.cloneNode(true));
}
}
)
} else {
customElements.define(name, elementClass(contentNode));
}
}
</script></head><body><template id="stat-block"><style>
.bar {
height: 5px;
background: #E69A28;
border: 1px solid #000;
position: relative;
z-index: 1;
}
:host {
display: inline-block;
}
#content-wrap {
font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial,
sans-serif;
font-size: 13.5px;
background: #FDF1DC;
padding: 0.6em;
padding-bottom: 0.5em;
border: 1px #DDD solid;
box-shadow: 0 0 1.5em #867453;
/* We don't want the box-shadow in front of the bar divs. */
position: relative;
z-index: 0;
/* Leaving room for the two bars to protrude outwards */
margin-left: 2px;
margin-right: 2px;
/* This is possibly overriden by next CSS rule. */
width: 400px;
-webkit-columns: 400px;
-moz-columns: 400px;
columns: 400px;
-webkit-column-gap: 40px;
-moz-column-gap: 40px;
column-gap: 40px;
/* We can't use CSS3 attr() here because no browser currently supports it,
but we can use a CSS custom property instead. */
height: var(--data-content-height);
/* When height is constrained, we want sequential filling of columns. */
-webkit-column-fill: auto;
-moz-column-fill: auto;
column-fill: auto;
}
:host([data-two-column]) #content-wrap {
/* One column is 400px and the gap between them is 40px. */
width: 840px;
}
::slotted(h3) {
border-bottom: 1px solid #7A200D;
color: #7A200D;
font-size: 21px;
font-variant: small-caps;
font-weight: normal;
letter-spacing: 1px;
margin: 0;
margin-bottom: 0.3em;
break-inside: avoid-column;
break-after: avoid-column;
}
/* For user-level p elems. */
::slotted(p) {
margin-top: 0.3em;
margin-bottom: 0.9em;
line-height: 1.5;
}
/* Last child shouldn't have bottom margin, too much white space. */
::slotted(*:last-child) {
margin-bottom: 0;
}
</style><div class="bar"></div><div id="content-wrap">
<slot></slot>
</div><div class="bar"></div></template><script>{
let templateElement = document.getElementById('stat-block');
createCustomElement('stat-block', templateElement.content);
}</script><template id="creature-heading"><style>
::slotted(h1) {
font-family: 'Libre Baskerville', 'Lora', 'Calisto MT',
'Bookman Old Style', Bookman, 'Goudy Old Style',
Garamond, 'Hoefler Text', 'Bitstream Charter',
Georgia, serif;
color: #7A200D;
font-weight: 700;
margin: 0px;
font-size: 23px;
letter-spacing: 1px;
font-variant: small-caps;
}
::slotted(h2) {
font-weight: normal;
font-style: italic;
font-size: 12px;
margin: 0;
}
</style><slot></slot></template><script>{
let templateElement = document.getElementById('creature-heading');
createCustomElement('creature-heading', templateElement.content);
}</script><template id="tapered-rule"><style>
svg {
fill: #922610;
/* Stroke is necessary for good antialiasing in Chrome. */
stroke: #922610;
margin-top: 0.6em;
margin-bottom: 0.35em;
}
</style><svg height="5" width="400">
<polyline points="0,0 400,2.5 0,5"></polyline>
</svg></template><script>{
let templateElement = document.getElementById('tapered-rule');
createCustomElement('tapered-rule', templateElement.content);
}</script><template id="top-stats"><style>
::slotted(*) {
color: #7A200D;
}
</style><tapered-rule></tapered-rule><slot></slot><tapered-rule></tapered-rule></template><script>{
let templateElement = document.getElementById('top-stats');
createCustomElement('top-stats', templateElement.content);
}</script><template id="abilities-block"><style>
table {
width: 100%;
border: 0px;
border-collapse: collapse;
}
th, td {
width: 50px;
text-align: center;
}
</style><tapered-rule></tapered-rule><table>
<tbody><tr>
<th>STR</th>
<th>DEX</th>
<th>CON</th>
<th>INT</th>
<th>WIS</th>
<th>CHA</th>
</tr>
<tr>
<td id="str"></td>
<td id="dex"></td>
<td id="con"></td>
<td id="int"></td>
<td id="wis"></td>
<td id="cha"></td>
</tr>
</tbody></table><tapered-rule></tapered-rule></template><script>{
function abilityModifier(abilityScore) {
let score = parseInt(abilityScore, 10);
return Math.floor((score - 10) / 2);
}
function formattedModifier(abilityModifier) {
if (abilityModifier >= 0) {
return '+' + abilityModifier;
}
// This is an en dash, NOT a "normal" dash. The minus sign needs to be more
// visible.
return '–' + Math.abs(abilityModifier);
}
function abilityText(abilityScore) {
return [String(abilityScore),
' (',
formattedModifier(abilityModifier(abilityScore)),
')'].join('');
}
function elementClass(contentNode) {
return class extends HTMLElement {
constructor() {
super();
this.attachShadow({mode: 'open'})
.appendChild(contentNode.cloneNode(true));
}
connectedCallback() {
let root = this.shadowRoot;
for (let i = 0; i < this.attributes.length; i++) {
let attribute = this.attributes[i];
let abilityShortName = attribute.name.split('-')[1];
root.getElementById(abilityShortName).textContent =
abilityText(attribute.value);
}
}
}
}
let templateElement = document.getElementById('abilities-block');
createCustomElement('abilities-block', templateElement.content, elementClass);
}</script><template id="property-line"><style>
:host {
line-height: 1.4;
display: block;
text-indent: -1em;
padding-left: 1em;
}
::slotted(h4) {
margin: 0;
display: inline;
font-weight: bold;
}
::slotted(p:first-of-type) {
display: inline;
text-indent: 0;
}
::slotted(p) {
text-indent: 1em;
margin: 0;
}
</style><slot></slot></template><script>{
let templateElement = document.getElementById('property-line');
createCustomElement('property-line', templateElement.content);
}</script><template id="property-block"><style>
:host {
margin-top: 0.3em;
margin-bottom: 0.9em;
line-height: 1.5;
display: block;
}
::slotted(h4) {
margin: 0;
display: inline;
font-weight: bold;
font-style: italic;
}
::slotted(p:first-of-type) {
display: inline;
text-indent: 0;
}
::slotted(p) {
text-indent: 1em;
margin: 0;
}
</style><slot></slot></template><script>{
let templateElement = document.getElementById('property-block');
createCustomElement('property-block', templateElement.content);
}</script><stat-block data-two-column="" style="--data-content-height: 672px;">
<creature-heading>
<h1>Werewolf Alpha</h1>
<h2>Medium humanoid (human, shapechanger), chaotic evil</h2>
</creature-heading>
<top-stats>
<property-line>
<h4>Armor Class</h4>
<p>14 (armor scraps) in humanoid form, 16 (natural armor) in wolf
or hybrid form</p>
</property-line>
<property-line>
<h4>Hit Points</h4>
<p>119 (14d8 + 56)</p>
</property-line>
<property-line>
<h4>Speed</h4>
<p>30 ft. (40 ft. in wolf form)</p>
</property-line>
<abilities-block data-cha="15" data-con="18" data-dex="15" data-int="11" data-str="20" data-wis="14"></abilities-block>
<property-line>
<h4>Saving Throws</h4>
<p>Str +9, Con +8, Wis +6</p>
</property-line>
<property-line>
<h4>Skills</h4>
<p>Athletics +9, Perception +6</p>
</property-line>
<property-line>
<h4>Damage Immunities</h4>
<p>bludgeoning, piercing, and slashing damage from nonmagical weapons
that aren't silvered</p>
</property-line>
<property-line>
<h4>Senses</h4>
<p>passive Perception 16</p>
</property-line>
<property-line>
<h4>Languages</h4>
<p>Common (can't speak in wolf form)</p>
</property-line>
<property-line>
<h4>Challenge</h4>
<p>9 (5,000 XP)</p>
</property-line>
</top-stats>
<property-block>
<h4>Legendary Resistance (3/Day).</h4>
<p>If the werewolf fails a saving throw, it can choose to succeed
instead.</p>
</property-block>
<property-block>
<h4>Keen Hearing and Smell.</h4>
<p>The werewolf has advantage on Wisdom (Perception) checks that rely on
hearing or smell.</p>
</property-block>
<property-block>
<h4>Pack Leader.</h4>
<p>The werewolf's allies have advantage on melee attack rolls against
any hostile creature within 5 feet of the werewolf.</p>
</property-block>
<property-block>
<h4>Shapechanger.</h4>
<p>The werewolf can use its action to polymorph into a wolf-humanoid
hybrid or into a wolf, or back into its true form, which is humanoid.
Its statistics, other than its AC, are the same in each form. Any
equipment it is wearing or carrying isn't transformed. It reverts to
its true form if it dies.</p>
</property-block>
<h3>Actions</h3>
<property-block>
<h4>Multiattack (Hybrid Form Only).</h4>
<p>The werewolf makes three attacks: one with its bite and two with its
claws.</p>
</property-block>
<property-block>
<h4>Bite (Wolf or Hybrid Form Only).</h4>
<p><i>Melee Weapon Attack:</i> +9 to hit, reach 5 ft., one target.
<i>Hit:</i> 14 (2d8 + 5) piercing damage. If the target is a humanoid,
it must succeed on a DC 14 Constitution saving throw or be cursed with
werewolf lycanthropy.</p>
</property-block>
<property-block>
<h4>Claws (Hybrid Form Only).</h4>
<p><i>Melee Weapon Attack:</i> +9 to hit, reach 5 ft., one target.
<i>Hit:</i> 16 (2d10 + 5) slashing damage.</p>
</property-block>
<h3>Legendary Actions</h3>
<p>The werewolf can take 3 legendary actions, choosing from the
options below. Only one legendary action option can be used at a
time and only at the end of another creature's turn. The werewolf
regains spent legendary actions at the start of its turn.</p>
<property-line>
<h4>Leap.</h4>
<p>The werewolf moves up to its speed without provoking
opportunity attacks.</p>
</property-line>
<property-line>
<h4>Bark Orders.</h4>
<p>The werewolf chooses a friendly creature who can
see or hear it. That creature can use its reaction to move up to its
speed without provoking opportunity attacks.</p>
</property-line>
<property-line>
<h4>Frenzy (Costs 2 Actions).</h4>
<p>The werewolf can make one claw attack against each creature within 5
feet of it.</p>
</property-line>
</stat-block></body></html>