-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·78 lines (61 loc) · 2.1 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
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
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>New Tab</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="bg"></div>
<div id="toolbar_launcher" class="launcher">
<svg height="32.8%" viewBox="0 0 74.6 24.5"><path fill="none" stroke="rgba(255,255,255,.5)" stroke-width="3" stroke-miterlimit="10" d="M70 22L37.4 2.5 4.6 21.8" stroke-linecap="round" stroke-linejoin="round"/></svg>
<div class="shade small"></div>
</div>
<div id="wrap-toolbar">
<div id="toolbar">
<span></span>
<!-- <span id="settings-btn">Settings</span> -->
<span>
<a href="" id="bgUrl" target="_blank">Photo</a> by <a href="" id="author" target="_blank"></a>
</span>
<span></span>
</div>
<div id="wrap-settings" class="box-inside-top">
<input type="checkbox"> Show bookmarks on load
</div>
</div>
<div id="wrap-content">
<div id="wrap-welcome" class="wrap-center">
<h1 id="greeting">Hi <span id="name">_____</span></h1>
<p id="compliment"></p>
<div class="shade"></div>
</div>
<div id="wrap-input-name" class="wrap-center">
<h2>What should I call you?</h2>
<input id="input-name" type="text"/>
</div>
</div>
<div id="wrap-bookmarks">
<!-- reference
<a class="bookmark"><img src=""/></a>
-->
<div id="info">
<label for="bm-url">Url</label>
<input type="text" id="bm-url" name="bm-url" class="input-small"/>
<label for="bm-name">Name</label>
<input type="text" id="bm-name" class="input-small"/>
<button id="bm-save">Save</button>
<button id="bm-cancel">X</button>
</div>
</div>
<div id="bookmark_launcher" class="launcher">
<svg height="32.8%" viewBox="0 0 74.6 24.5"><path fill="none" stroke="rgba(255,255,255,.5)" stroke-width="3" stroke-miterlimit="10" d="M70 22L37.4 2.5 4.6 21.8" stroke-linecap="round" stroke-linejoin="round"/></svg>
<div class="shade small"></div>
</div>
<div id="prevPic" class="itr"></div>
<div id="nextPic" class="itr"></div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>