-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
48 lines (47 loc) · 1.45 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
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Improved eClass</title>
<style>
body {
margin-left: 15px;
margin-right: 15px;
margin-top: 15px;
min-width: 175px;
min-height: 100px;
}
button {
background-color: green;
color: white;
padding: 15px 32px;
font-size: 16px;
border: none;
border-radius: 5px;
}
label {
font-size: 2em;
}
a {
margin-left: 10px;
}
</style>
</head>
<body>
<h2>Theme</h2>
<label for="dark"><input type="radio" id="dark" name="theme"> Dark</label><br>
<label for="light"><input type="radio" id="light" name="theme"> Light</label><br>
<!-- <small>Light version under construction 🔨 </small> -->
<hr>
<div class="speeds">
<h2>Video Speed</h2>
<label for="x1"><input type="radio" id="x1" name="speed"> 1x</label><br>
<label for="x15"><input type="radio" id="x15" name="speed"> 1.5x</label><br>
<label for="x2"><input type="radio" id="x2" name="speed"> 2x</label><br>
</div>
<hr>
<a href="https://eclass.srv.ualberta.ca/my/" target="_blank"><button style="text-align: center;">Open eClass</button></a>
<script src="js/popup.js"></script>
</body>
</html>