-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
71 lines (63 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
</head>
<style>
button {
height: 10px;
width: 10px;
outline: none;
}
#cancel {
height: 20px;
width: 20px;
}
body,
html {
height: 300px;
width: 400px;
}
.maincontent {
width: 100%;
display: flex;
display: -webkit-flex;
flex-direction: row;
-webkit-flex-direction: row;
justify-content: center;
align-items: center;
}
tr,
th,
td {
border: 1px solid black;
text-align: left;
}
#schedule {
padding: 10px;
}
</style>
<body>
<div class="maincontent">
<p id="time"></p>
</div>
<table id="schedule">
<tbody id="schedule body">
<tr>
<th>Class</th>
<th>Start Time</th>
<th>End Time</th>
<th>Zoom Link</th>
<th><button id="add"></button></th>
</tr>
<tr>
<td></td>
<td>MUST use 12 hour format (ex: 10:30 AM)</td>
<td>MUST use 12 hour format (ex: 10:30 AM)</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<script src="js/background.js"></script>
</body>
</html>