-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
179 lines (164 loc) · 5.45 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Parluks</title>
<link rel="stylesheet" href="css/boomerang-startup-analitycs.min.css" />
<link rel="stylesheet" href="css/boostrap.css" />
<link rel="stylesheet" href="css/index.css" />
<link
href="https://fonts.googleapis.com/css?family=Nunito:400,600,700,800|Roboto:400,500,700"
rel="stylesheet"
/>
</head>
<body id="body">
<div class="page">
<div class="header">
<form id="search">
<input
class="search"
id="search-value"
name="url"
value="https://github.com/arturssmirnovs/parluks"
placeholder="Enter web address"
type="search"
/>
</form>
<div class="action-left">
<span id="action-back" class="action" title="Click to go back">
<img src="images/left.svg" alt="Back" />
</span>
<span id="action-forward" class="action" title="Click to go forward">
<img src="images/right.svg" alt="Forward" />
</span>
<span id="action-refresh" class="action" title="Refresh">
<img src="images/refresh.svg" alt="Refresh" />
</span>
</div>
<div class="action-right">
<span id="action-zoom" class="action" title="Zoom in/out">
<img src="images/zoom.svg" alt="Zoom" />
</span>
<span id="action-background" class="action" title="Show background">
<img src="images/background.svg" alt="Show background" />
</span>
<span id="action-devices" class="action" title="Developer tools">
<img src="images/devtools.svg" alt="Developer tools" />
</span>
<span id="action-settings" class="action" title="Settings">
<img src="images/settings.svg" alt="Settings" />
</span>
<span id="action-donate" class="action" title="Website">
<img src="images/website.svg" alt="Website" />
</span>
<div id="zoom-input-wrapper" style="display: none">
<input
type="range"
id="size"
class="custom-range"
name="size"
min="1"
max="100"
value="50"
/>
</div>
</div>
</div>
<div id="main" class="main"></div>
<div id="devices-wrapper" style="display: none">
<div id="devices">
<h3 class="mt-0">Devices</h3>
<div id="devices-list"></div>
<button
id="action-devices-close"
class="btn btn-styled btn-lg btn-base-1 mt-3"
>
Save
</button>
</div>
</div>
<div id="settings-wrapper" style="display: none">
<div id="settings">
<div style="display: flex; justify-content: space-between">
<h3 class="mt-0">Settings</h3>
<button
id="action-settings-close"
class="btn btn-styled btn-base-5"
style="font-size: 1.2rem"
>
×
</button>
</div>
<div>
<label>Display mode</label>
<select id="settings-mode" class="form-control mb-3">
<option value="dark">Dark mode</option>
<option value="light">Light mode</option>
</select>
</div>
<div>
<label>Follow scroll in other screens</label>
<select id="settings-scroll" class="form-control mb-3">
<option value="1">Yes</option>
<option value="0">No</option>
</select>
</div>
<div>
<label>Zoom level</label>
<input
type="range"
id="settings-zoom"
class="custom-range mb-3"
name="size"
min="1"
max="100"
value="50"
/>
</div>
<div>
<label>Device picture background</label>
<select id="settings-background" class="form-control mb-3">
<option value="1">Yes</option>
<option value="0">No</option>
</select>
</div>
<div>
<label>Override device meta width</label>
<select id="settings-width" class="form-control mb-3">
<option value="1">Yes</option>
<option value="0">No</option>
</select>
</div>
<div style="display: flex; justify-content: flex-end">
<button
id="action-settings-cancel"
class="btn btn-styled btn-lg btn-base-3"
style="margin-right: 8px"
>
Cancel
</button>
<button
id="action-settings-save"
class="btn btn-styled btn-lg btn-base-1"
>
Save
</button>
</div>
</div>
</div>
<div id="about" style="display: none">
<div class="about-container">
<img src="images/logo.png" alt="logo" />
<p class="about-intro">Browser for developers</p>
<a id="about-start" class="btn btn-styled btn-lg btn-base-1"
>Start using</a
>
<a id="about-update" style="display: none">Download updates</a>
</div>
</div>
</div>
<script>
require("./dist/js/app.js");
</script>
</body>
</html>