-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 2.46 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
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script src="./script.js" defer></script>
<title>ACF Database</title>
</head>
<body>
<div class="supreme-container">
<div class="header">
<div class="top-title">ACF Database</div>
</div>
<div style="height: 15vh"></div>
<div class="main-container">
<form target="frame" id="query">
<div class="search-panel">
<input type="text" name="search" id="search" placeholder="Search for a phrase, a category, an answerline..." autofocus>
<button type="submit" id="search-submit">Search!</button>
</div>
</form>
<div class="results-container" style="display: none;">
<hr>
<div class="results-questions">
<div class="results-title">
<span>Question</span>
<a id="jump-to-answerline" href="#answerline">Jump to Answerline</a>
</div>
<div class="results-length" id="question-results-length"></div>
<div id="question-results"></div>
</div>
<div class="results-answers" id="answerline">
<div class="results-title">Answerline</div>
<div class="results-length" id="answer-results-length"></div>
<div id="answer-results"></div>
</div>
</div>
</div>
<div style="height: 10vh"></div>
<div class="footer">
<span>
Check out the
<a target="_blank" href="https://github.com/mrbossosity/acf-db">Github</a>
project page and grab the full Fall and Regionals JSONs
<a target="_blank" href="https://github.com/mrbossosity/quizbowl-collections/raw/master/clean-acf-fall-2008-2019.json">here</a>
and
<a target="_blank" href="https://github.com/mrbossosity/quizbowl-collections/raw/master/clean-acf-regionals-2006-2019.json">here</a>.
All questions from Raynor Kuang's
<a target="_blank" href="https://www.quizdb.org/">QuizDB</a>.
</span>
</div>
</div>
<iframe src="" name="frame" style="display: none;"></iframe>
</body>
</html>