-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (90 loc) · 3.07 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body id="body">
<section class="hero is-success">
<div class="hero-body">
<div class="container has-text-centered">
<p class="title">
Hackathon Finder
</p>
<p id="hackathonAmount"class="subtitle">
</p>
</div>
</div>
</section>
<!-- Nav Bar for sorting-->
<nav class="navbar" role="navigation" aria-label="main navigation">
<div id="navbar" class="navbar-menu">
<div class="navbar-start">
<!-- add style="flex-grow: 1; justify-content: center;" to center navbar-start if needed -->
<!-- Status -->
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
Status
</a>
<div class="navbar-dropdown">
<a class="navbar-item option0">
Currently running
</a>
<a class="navbar-item option0">
Not started
</a>
</div>
</div>
<!-- Starts In 24 hours-->
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
Starts In 24 hours
</a>
<div class="navbar-dropdown">
<a class="navbar-item option1">
Yes
</a>
<a class="navbar-item option1">
No
</a>
</div>
</div>
<!-- Sites -->
<!-- CodeForces, CodeForces::Gym, TopCoder, AtCoder, CS Academy, CodeChef, HackerRank, HackerEarth, Kick Start, LeetCode, Toph, -->
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
From Site:
</a>
<div id="siteHolder"class="navbar-dropdown">
</div>
</div>
<!-- Search Button -->
<button id="searchButton" class="button is-info">Search
</button>
</div>
</div>
</nav>
<section id="errorHolder">
</section>
<section id="cardHolder">
</section>
<script src="functions.js"></script>
<script src="script.js"></script>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Hackathon Finder</strong> made by Chris Suarez and Zack Hassman at Google Computer Science Summer Institute using <a href="https://kontests.net/about" target="_blank">Kontests API</a> and <a href="https://bulma.io/" target="_blank">Bulma CSS Framework</a>.
</p>
</div>
</footer>
<!--
This script places a badge on your repl's full-browser view back to your repl's cover
page. Try various colors for the theme: dark, light, red, orange, yellow, lime, green,
teal, blue, blurple, magenta, pink!
-->
<!-- <script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script> -->
</body>
</html>