-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (38 loc) · 1.02 KB
/
index.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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
html {
font-family: system-ui, BlinkMacSystemFont, -apple-system, Segoe UI,
Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
Helvetica Neue, sans-serif;
color: #2d3748;
background: #fdfcfc;
min-width: 350px;
font-weight: 400;
padding: 1em;
}
button {
padding: 15px;
padding-right: 30px;
padding-left: 30px;
overflow: visible;
}
button {
font-family: inherit;
font-size: 1em;
}
</style>
</head>
<body>
<h1>Quizlet to Anki</h1>
<div id="results">Loading. Please wait.</div>
<br />
<span id="status">Status: Loading</span>
<br /><br />
<button id="generate" disabled="true">Download</button>
<script type="module" src="src/popup.js"></script>
</body>
</html>