-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun-round.html
More file actions
75 lines (67 loc) · 3.38 KB
/
Copy pathrun-round.html
File metadata and controls
75 lines (67 loc) · 3.38 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuizCOMMAND - Run Round</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.min.css" />
</head>
<body class="bg-dark text-light">
<nav class="navbar bg-light text-dark text-center">
<span id="question-indicator" class="navbar-text">
<h3>Question #<span></span></h3>
</span>
</nav>
<div class="vertical-center">
<div class="container text-center">
<div id="display-carousel" class="carousel slide" data-keyboard="true" data-wrap="false" data-interval="false">
<div class="carousel-inner" id="round-carousel">
<div class="carousel-item active">
<!-- pre-loader -->
<div class="intro">
<div class="sk-three-bounce loading">
<div class="sk-child sk-bounce1"></div>
<div class="sk-child sk-bounce2"></div>
<div class="sk-child sk-bounce3"></div>
</div>
<!-- intro screen -->
<div class="loaded">
<div class="jumbotron text-dark">
<h1></h1>
<h3>Each question is worth
<span id="ppq"></span>
</h3>
</div>
<h2 class="leaderboard-exists">Leaderboard:</h2>
<div class="row">
<ol id="leaderboard" class="col-8 m-auto"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- invisible carousel controls -->
<a class="carousel-control-prev" href="#display-carousel" role="button" data-slide="prev">
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#display-carousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<!-- Firebase, Firebase init, and firebase UI -->
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase.js"></script>
<script src="https://cdn.firebase.com/libs/firebaseui/2.6.3/firebaseui.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>