forked from paulrouget/firefox.html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>tabs</title>
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" title="default" href="css/theme.css">
<!-- Alternate themes -->
<link rel="alternate stylesheet" title="dark" href="themes/dark/dark.css">
<!-- Module handling -->
<!-- All further JS code is loaded from javascript -->
<script data-main="app" src="lib/require.js/require.js"
type="text/javascript" defer="defer"></script>
</head>
<body>
<!-- See this code? box, vbox, hbox, … these look like XUL
tags, but they're not. These are HTML tags using the
standard CSS flexbox model, described in css/layout.css -->
<vbox flex="1">
<hbox class="tabstrip"></hbox>
<hbox class="navbar" align="center">
<button class="back-button"></button>
<button class="forward-button"></button>
<button class="reload-button"></button>
<button class="stop-button"></button>
<hbox class="urlbar" flex="1" align="center">
<div class="identity"></div>
<input placeholder="Search or enter address" class="urlinput" flex="1">
</hbox>
<hbox class="searchbar" flex="1" align="center">
<div class="searchselector"></div>
<input placeholder="Yahoo" class="searchinput">
</hbox>
<button class="menu-button"></button>
</hbox>
<box class="iframes" flex="1" align="stretch"></box>
</vbox>
<div hidden="true" class="dummy-tab-curve"></div>
</body>
</html>