-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
49 lines (46 loc) · 1.62 KB
/
options.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Options</title>
<style>
body { font-family: "Droid Sans", sans-serif; color: #333; }
input { transition: border-color 0.3s; border: 1px solid #ccc; padding: 0.2em }
input:focus { border: 1px solid #66AFE9; outline: none; }
.logo { float: left; margin-right: 1em; }
h2 { margin: 0; padding: 0; margin-bottom: 0.1em; }
p { margin:0; padding: 0; }
header { border-bottom: 1px solid #ccc; padding-bottom: 1.25em; margin-bottom: 1em }
main { padding-left: 1em; }
a { text-decoration: none; color: #428BCA}
a:hover {text-decoration: underline; color: #2A6496}
hr { border: none; border-bottom: 1px solid #ccc;}
form {display: table; margin-left: 2em}
em.info {color: #777}
</style>
</head>
<body>
<header>
<h2>Bash User Study</h2>
</header>
<main>
<h3>Before the study.</h3>
<ul>
<li>This chrome extension records the webpages you visit during the study so
please only visit webpages relevant to the study.</li>
<li>Close this window and start the study</li>
</ul>
<h3>After the study.</h3>
<ul>
<li>Please click the download log button and upload the downloaded file to the provided link.</li>
<button type="button" id="completed">Download Log!</button>
<li>Please uninstall this chrome extension.</li>
<form></form>
</ul>
<!-- <p>
<button type="button" id="completed">Download Log!</button>
</p> -->
</main>
<script src='options.js'></script>
</body>
</html>