forked from vaarun5/PHUHSGradeChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
41 lines (40 loc) · 1.16 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portal Calculator</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" type="text/css">
</head>
<style>
html, body {
font-family: 'Open Sans', sans-serif;
font-size: 14 px;
margin: 0;
padding: 0.25rem;
width: 384px;
}
h1{
font-family: 'Menlo', monospace;
font-size: 22px;
font-weight: 400;
}
.modal-content{
padding: 0 22px;
}
</style>
<body>
<h1>Focus Grade Calculator</h1>
<div class = "modal-content">
<button id="average">Avg</button>
<button id="clickme">Click to fetch all grades</button>
<button id="future">Theoretical Grade</button>
<button id="remove">Remove</button>
<button id="weighting">Fetch Weighting</button>
</div>
<p>Grades: <p id="totalGrades"/></p>
<div id="assignmentSection"></div>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>