-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (40 loc) · 1.93 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="speedFlicks-container d-flex flex-col align-center justify-space-between">
<div class="d-flex flex-col align-center">
<div class="d-flex align-center">
<img class="speedFlicks-logo mr-5" src="icon.png" />
<div class="font-20 font-semibold color-charcoal">Speed<span class="color-red">Flicks</span></div>
</div>
<div class="d-flex align-center mt-6">
<div class="speedFlicks-status-icon mr-5" id="statusIcon"></div>
<div class="color-slate-gray font-14" id="extensionStatus"></div>
</div>
</div>
<div class="speedFlicks-main bg-white d-flex flex-col justify-space-between align-center">
<div class="d-flex flex-col align-center">
<div class="color-slate-gray font-14">Current Speed</div>
<div class="color-charcoal font-25 font-bold" id="currentSpeed"></div>
</div>
<div class="d-flex align-center justify-center speedFlicks-action-area">
<button class="speedFlicks-button-secondary mr-6 flex-auto" id="decrementSpeed">-</button>
<input type="number" class="ml-6 mr-6" id="speedInputField" />
<button class="speedFlicks-button-secondary ml-6 flex-auto" id="incrementSpeed">+</button>
</div>
<div class="d-flex w-100 justify-center">
<button class="speedFlicks-button-primary mr-6 flex-auto" id="setSpeed">Set Speed</button
><button class="speedFlicks-button-secondary ml-6 flex-auto" id="resetSpeed">Reset (1x)</button>
</div>
</div>
<div class="d-flex flex-col align-center">
<div class="color-gray-500 font-12">Speed range: 0.10x - 10.0x</div>
<div class="mt-5 color-gray-500 font-10 font-semibold">Developed by: Faria Karim Porna</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>