-
Notifications
You must be signed in to change notification settings - Fork 1
/
vehicle.html
61 lines (50 loc) · 2.03 KB
/
vehicle.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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>L2KD Encyclopedia</title>
<meta name="description" content="An Encyclopedia about the Lego 2K Drive vehicles, bricks and other in-game collectibles. Built by the fans, for the fans">
<link rel="icon" href="icons/player-perks/incrHandling.png">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="vehicle.css">
</head>
<body class="green">
<section id="vehicle">
<div id="header">
<h1>
<a href="."><img id="back" src="icons/back.svg"></a>
<img id="terrain" src="icons/vehicle-terrain/offroad.png" style="filter: invert(0.9);">
<span id="name"><!--Name name name--></span>
</h1>
<img id="perk" src="icons/vehicle-perks/mrsBackfire.png">
</div>
<div id="preview">
<img src="textures/woosh.png">
</div>
</section>
<div id="perf>s"></div>
<section>
<h1>How to get</h1>
<div class="tile-grid" id="sources"></div>
<!--div class="tile bg source slanted" id="no_source">
<img class="tile-thumbnail" src="textures/woosh.png">
<div class="tile-text-wrapper"><div class="tile-text">Not in a race, quest, minigame, driverpass</div></div>
</div>
<div class="tile bg rarity2 slanted" id="no_source">
<img class="tile-thumbnail" src="textures/sources/unkie2.png">
<div class="tile-text-wrapper"><div class="tile-text">For the rest, I am not sure yet!</div></div>
</div-->
</section>
<section>
<h1>Surplus parts</h1>
<div class="tile-grid" id="surplus"></div>
</section>
<section id='list' style="cursor: pointer;" onclick="document.getElementById('pieces').style.display = 'grid';
document.getElementById('list').scrollIntoView({behavior: 'smooth'});">
<h1>Click here for non-surplus part list</h1>
<div class="tile-grid" id="pieces" style="display: none;"></div>
</section>
<script src="vehicle.js" type="module"></script>
</body>
</html>