This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
70 lines (60 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="static/css/normalize.css">
<link rel="stylesheet" href="static/css/skeleton.css">
<style media="screen">
html, body {
--popup-width: 300px !important;
--popup-height: 250px !important;
min-width: var(--popup-width);
min-height: var(--popup-height);
max-width: var(--popup-width);
max-height: var(--popup-height);
}
button {
width: 100%;
}
form {
margin-bottom: 1.25rem;
}
#slides-notice {
display: none;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="four columns">
<p id="text" style="background-color: red"></p>
</div>
</div>
<div class="row">
<div class="one column">
<form>
<label for="lectureNameInput">Name</label>
<input class="u-full-width" type="text" placeholder="" id="lectureNameInput">
</form>
</div>
</div>
<div class="row">
<div class="one column">
<button id="btn-download" class="button-primary">Download</button>
</div>
</div>
<div class="row">
<div class="one column">
<p id="slides-notice"><span id="slides-notice-text"></span> (<a id="btn-slides-info" href="#">info</a>)</p>
</div>
</div>
<div class="row" style="margin-top: 2%">
<div class="one column">
<a href="#" id="btn-feedback">Feedback</a>
</div>
</div>
</div>
<script type="module" src="./popup.js"></script>
</body>
</html>