forked from minbrowser/min
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (83 loc) · 3.07 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="script-src 'self'" />
<title>Min</title>
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/windowsCaptionButtons.css" />
<link rel="stylesheet" href="css/tabBar.css" />
<link rel="stylesheet" href="css/taskOverlay.css" />
<link rel="stylesheet" href="css/webviews.css" />
<link rel="stylesheet" href="css/searchbar.css" />
<link rel="stylesheet" href="css/findinpage.css" />
<link rel="stylesheet" href="ext/font-awesome-4.4.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="node_modules/dragula/dist/dragula.min.css" />
</head>
<body>
<i id="switch-task-button" class="fa fa-bars navbar-action-button theme-text-color windowDragHandle"></i>
<div class="windows-drag-area"></div>
<div class="windows-caption-buttons">
<div class="element caption-minimise">
<svg>
<line x1="1" y1="5.5" x2="11" y2="5.5" />
</svg>
</div>
<div class="element caption-maximise">
<svg>
<rect x="1.5" y="1.5" width="9" height="9" />
</svg>
</div>
<div class="element caption-restore">
<svg>
<rect x="1.5" y="3.5" width="7" height="7" />
<polyline points="3.5,3.5 3.5,1.5 10.5,1.5 10.5,8.5 8.5,8.5" />
</svg>
</div>
<div class="element caption-close">
<svg>
<path d="M1,1 l 10,10 M1,11 l 10,-10" />
</svg>
</div>
</div>
<div id="navbar" class="theme-background-color theme-text-color windowDragHandle" tabindex="-1">
<i id="menu-button" class="fa fa-ellipsis-v navbar-action-button"></i>
<i id="back-button" hidden class="fa fa-angle-left navbar-action-button"></i>
<div id="tabs"></div>
<i id="add-tab-button" class="fa fa-plus navbar-action-button"></i>
<i class="fa fa-bars navbar-action-button invisible"></i>
</div>
<div id="searchbar" class="theme-background-color theme-text-color">
<div class="top-answer-area"></div>
</div>
<div id="overlay"></div>
<div id="webviews">
<div id="leftArrowContainer" class="arrow-indicator">
<i id="leftArrow" class="fa fa-arrow-left arrow"></i>
</div>
<div id="rightArrowContainer" class="arrow-indicator">
<i id= "rightArrow" class="fa fa-arrow-right arrow"></i>
</div>
</div>
<!-- findinpage ui -->
<div id="findinpage-bar" hidden class="theme-background-color theme-text-color">
<input id="findinpage-input" class="mousetrap" />
<span id="findinpage-count" class="inline-text"></span>
<div class="divider"></div>
<i id="findinpage-previous-match" class="icon fa fa-angle-up findinpage-control" tabindex="-1"></i>
<i id="findinpage-next-match" class="icon fa fa-angle-down findinpage-control" tabindex="-1"></i>
<div class="divider"></div>
<i id="findinpage-end" class="icon fa fa-close"></i>
</div>
<div id="task-overlay" class="" hidden>
<div class="navbar windowDragHandle" id="task-overlay-navbar"></div>
<div id="task-area"></div>
<div id="add-task">
<i class="fa fa-pencil-square-o"></i>
<span></span>
</div>
</div>
<!-- add scripts in Gruntfile.js -->
<script src="dist/build.min.js"></script>
</body>
</html>