-
Notifications
You must be signed in to change notification settings - Fork 5
/
introduction.html
48 lines (46 loc) · 1.84 KB
/
introduction.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to DocDown</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="./vendor/css/photon.css" media="screen" charset="utf-8">
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<!-- <link rel="stylesheet" href="./index.css" media="screen" charset="utf-8"> -->
<style>
.window-content {
flex-direction: column;
}
h2 {
color: #888;
align-self: center;
}
#closeButton {
align-self: center;
}
</style>
</head>
<body>
<div class="window">
<div class="window-content padded-more">
<img src="./assets/icon-fullsize.png" style="width: 60px; align-self:center;" />
<h2>Welcome to DocDown!</h2>
<p>
DocDown lives in your menu bar, along the top edge of your screen. Drag a file over its icon, or click on it, to get started.
</p>
<img src="./assets/DocDown-menubar.png" style="margin: 20px 0; box-shadow: 1px 1px 3px rgba(0,0,0,0.2); border-radius:2px; width: 200px; align-self:center;" />
<p>
For help, click the <button disabled id="help_button" class="btn btn-default"><span class="icon icon-help" title="Help"></span></button> button in the main DocDown window. The <button disabled id="settings_button" class="btn btn-default"><span class="icon icon-cog" title="Preferences"></span></button> button will let you adjust DocDown's settings, and the <button disabled id="quit_button" class="btn btn-default"><span class="icon icon-cancel" title="Quit"></span></button> button exits the app.
</p>
<p>
Happy converting!
</p>
<button class="btn btn-large btn-primary" id="closeButton">Got it!</button>
</div>
</div>
</body>
<script>
$("#closeButton").click(function(){
window.close();
})
</script>
</html>