-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (55 loc) · 2.48 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>magicwords.app</title>
<meta name="description" content="Randomly generate verbal components for a spell. Say the magic word!">
<meta name="keywords" content="magic words, spell generator, verbal components, dungeons and dragons, d&d, dnd, dnd 5e, fifth edition, pathfinder, rpg, dice, wizard, magic, caster, spells, spellbook, scroll, random">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
</head>
<body class="c-body">
<main class="c-main">
<div class="l-scroll">
<div class="c-scroll">
<div class="c-scroll__holder c-scroll__holder--top">
<div class="c-scroll__knob">
<div class="c-scroll__knob c-scroll__knob--small c-scroll__knob--left"></div>
</div>
<div class="c-scroll__roll c-scroll__roll--top"></div>
<div class="c-scroll__knob">
<div class="c-scroll__knob c-scroll__knob--small c-scroll__knob--right"></div>
</div>
</div>
<div class="c-scroll__paper">
<div class="c-scroll__content js-wrapper">
<div class="c-scroll__text js-outlet">
</div>
</div>
</div>
<div class="c-scroll__holder c-scroll__holder--bottom">
<div class="c-scroll__knob">
<div class="c-scroll__knob c-scroll__knob--small c-scroll__knob--left"></div>
</div>
<div class="c-scroll__roll c-scroll__roll--bottom"></div>
<div class="c-scroll__knob">
<div class="c-scroll__knob c-scroll__knob--small c-scroll__knob--right"></div>
</div>
</div>
</div>
</div>
<div class="c-candle">
<div class="c-flame">
<div class="c-flame__shadows"></div>
<div class="c-flame__top"></div>
<div class="c-flame__middle"></div>
<div class="c-flame__bottom"></div>
</div>
<div class="c-candle__wick"></div>
<div class="c-candle__wax"></div>
</div>
</main>
<script src="main.js" async></script>
</body>
</html>