-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
25 lines (25 loc) · 916 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600" rel="stylesheet" />
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="container logo">
NETFLIX SUBTITLES STYLER
</div>
<form id="popup-form" class="container">
<div class="input-info">Vertical position from bottom [px]</div>
<input class="form-control" id="vPos" type="number" value="" min="0" max="5000" />
<div class="input-info">Font size [px]</div>
<input id="fSize" type="number" value="" min="0" max="300" />
<div class="input-info">Font color [HEX]</div>
<input id="fColor" type="text" value="" pattern="^#[0-9A-F]{6}$" />
<button id="change" type="submit">Change</button>
</form>
<div class="container footer">
© twistezo, 2019
</div>
<script src="popup.js"></script>
</body>
</html>