-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrapsite.html
More file actions
41 lines (41 loc) · 2.05 KB
/
crapsite.html
File metadata and controls
41 lines (41 loc) · 2.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="index.js" defer></script>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="border-outer">
<div class="border-inner" id="content-container">
<div id="search-container" class="raised">
<form id="search-form" class="spaced">
<label for="search-box" class="centered" style="white-space: nowrap; margin-right: 8px;">Enter a Pokémon:</label>
<!-- <div style="position: relative; width: 140px">-->
<div class="depressed centered">
<input type="text" style="top: 0; left: 0;" id="search-box">
<!-- <p id="errorDisplay" style="top: 0; left: 0; visibility: hidden" class="centered">errors</p>-->
</div>
<!-- </div>-->
<button id="addButton" class="centered" title="Add">
<img src="./assets/check.png" class="button-content" alt="Add">
</button>
<div class="divider-container">
<div class="vertical-divider"></div>
</div>
<button id="clearButton" class="centered" title="Clear">
<img src="./assets/trash-bin.png" class="button-content" alt="Clear">
</button>
</form>
</div>
<p style="margin-left: 8px; margin-top: 8px; font-weight: bold; font-size: 25px; white-space: nowrap;">Your Team:</p>
<div class="depressed fill" id="team-display-outer-container">
<div id="team-display-inner-container">
<ul id="team-display"></ul>
</div>
</div>
</div>
</div>
</body>
</html>