-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="classes.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@10.2.6/dist/css/autoComplete.01.min.css">
</head>
<body>
<div class="parent">
<div class = "search">
<img src="Logo.png">
<h1>
Rhodes Catalog Graph View
</h1>
<h2>
<i>Choose your classes</i>
</h2>
<form id="course">
<input id="autoComplete">
</form>
<div class="info" onmouseover="">?
<div class="flexcontainer">
<div class="des"> Search your class and it finds its prerequisites, color coded by available semesters and if you've taken it or not.</div>
<div class = "indicator" style="background: var(--blue)"> Taken </div>
<div class = "indicator" style="background: var(--fall)">Fall Semester</div>
<div class = "indicator" style="background: var(--spring); color:black"> Spring Semester </div>
<div class = "indicator" style="background: var(--summer); color:black"> Summer Semester </div>
<div class = "indicator" style="background: var(--both)"> Offered both semesters </div>
<div class = "indicator" style="background: var(--rare)"> Not offered every year </div>
</div>
</div>
</div>
<div id="description"></div>
<template>
<label class="container">Taken
<input type="checkbox" onclick="toggle(event)">
<span class="checkmark"></span>
</label>
</template>
</div>
<div class="planner"></div>
<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@10.2.6/dist/autoComplete.min.js"></script>
<script src="autocomplete.js"></script>
<script src="courses.js"></script>
</body>
</html>