-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.05 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
<html>
<head>
<title>Race For The Galaxy Card Katalog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" href="res/style.css">
<link rel="stylesheet" href="res/flex.css">
<link rel="search" type="application/opensearchdescription+xml"
title="Race For The Galaxy Card Katalog" href="/search.xml">
<script src="cards.js"></script>
</head>
<body>
<header>
<div class="name">
Race For The Galaxy Card Katalog
</div>
<div class="disclaimer">
This is an unofficial website. "Race for The Galaxy Card Katalog" is not affiliated with Rio Grande Games.
All materials belong to Rio Grande Games.
</div>
</header>
<div class="flex row">
<input class="flex-70" type="text" id="search" placeholder="Search here..." autofocus />
<div class="flex flex-5 middle" id="num-results"></div>
<div class="flex flex-5 middle" id="num-quantity"></div>
<div class="flex flex-5 middle flex-start">
<label class="select">
<select id="sort">
<option>Type</option>
<option>Name</option>
<option selected>Cost</option>
<option>Speed</option>
<option>Range</option>
<option>Target</option>
<option>Artist</option>
</select>
</label>
<span id="arrow" class="round clickable rotatable">↓</span>
</div>
</div>
<div class="flex">
<p class="flex-97">
Examples:
<code>flag:start expansion:!(alien|xeno)</code>,
<code>cost:<=4 vp:>=1 flag:military expansion:(base|storm|rebel)</code>,
<code>f:imperium t:dev</code>,
<code>power:get_vp power:consume_gene</code>,
<code>extravp:rebel</code>
</p>
</div>
<div id="result" class="flex row wrap flex-start"></div>
</body>
</html>