forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (82 loc) · 3.25 KB
/
index.html
File metadata and controls
91 lines (82 loc) · 3.25 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en" class="is-link-block">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>New Tab</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/icons.css">
<link rel="stylesheet" href="css/utilities.css">
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/typography.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/spacing.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/form.css">
<link rel="stylesheet" href="css/shade.css">
<link rel="stylesheet" href="css/modal.css">
<link rel="stylesheet" href="css/head.css">
<link rel="stylesheet" href="css/clock.css">
<link rel="stylesheet" href="css/search.css">
<link rel="stylesheet" href="css/links.css">
</head>
<body>
<div class="grid">
<div class="grid-item-head">
<div class="head">
<div class="head-item mb-3 mb-lg-0">
<p class="clock"></p>
</div>
<div class="head-item head-search mb-3 mb-lg-0">
<form class="search" action="http://www.google.com/search" method="get">
<input class="search-input mb-0" type="text" placeholder="Find bookmarks or search" tabindex="1" name="q" autocomplete="off" tabindex="1">
<input type="submit" value="Search" class="is-hidden">
</form>
<button class="button mb-0 ml-3 search-clear" tabindex="1" disabled>
<span class="icon-close"></span>
</button>
</div>
<div class="head-item button-group mb-3 mb-lg-0">
<button class="button mb-0 control-add" tabindex="1">
<span class="button-text">Add</span>
</button>
<button class="button mb-0 control-edit" tabindex="1">
<span class="button-text">Edit</span>
</button>
</div>
<div class="head-item button-group mb-3 mb-lg-0">
<button class="button mb-0 control-link-list" tabindex="1">
<span class="button-text">List</span>
</button>
<button class="button mb-0 control-link-blocks active" tabindex="1">
<span class="button-text">Block</span>
</button>
</div>
<div class="head-item mb-3 mb-lg-0">
<form class="theme">
<label class="button mb-0 theme-label" for="accent-picker">
<span class="button-text">Accent</span>
</label>
<input id="accent-picker" type="color" class="theme-input" value="#ffaa33" tabindex="1">
</form>
</div>
</div>
</div>
<div class="grid-item-body"></div>
</div>
</body>
<script src="js/helper.js"></script>
<script src="js/control.js"></script>
<script src="js/bookmarks.js"></script>
<script src="js/modal.js"></script>
<script src="js/shade.js"></script>
<script src="js/theme.js"></script>
<script src="js/clock.js"></script>
<script src="js/search.js"></script>
<script src="js/state.js"></script>
<script src="js/data.js"></script>
<script src="js/links.js"></script>
<script src="js/init.js"></script>
</html>