-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
42 lines (42 loc) · 845 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Uvic 2 iCal</title>
<style>
body {
background: rgb(0,46,63);
}
.full {
width: 400px;
height: 250px;
}
.full p {
color: rgb(255,255,255);
}
.initial {
display: block;
}
.final {
display: none;
background: yellow;
}
</style>
</head>
<body>
<div class="full">
<div class="initial">
<button id="extract_data">Do It!</button>
<p id="resultsRequest">Extract Data</p>
</div>
<div class="final" id="div_ics_download">
<button id="ics_download">Do It!</button>
<p>Download ICS file</p>
</div>
<div class="final" id="div_gmail_import">
<button id="gmail_import">Do It!</button>
<p>Google Calendar Import</p>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>