-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
60 lines (57 loc) · 1.82 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Source+Code+Pro&display=swap"
rel="stylesheet"
/>
<link href="styles.css" rel="stylesheet" />
<title>Better Github</title>
</head>
<body>
<div class="flex">
<img src="./assets/icon-no-bg.png" alt="logo" />
<h2>BETTER GITHUB</h2>
</div>
<form id="form">
<div>
<label for="font-name">Font Name</label>
<input
type="text"
name="font-name"
id="font-name-input"
placeholder="Ex: Fira Code"
autocomplete="off"
/>
</div>
<br />
<div>
<label for="font-size">Font Size</label>
<input
type="number"
name="font-size"
id="font-size-input"
placeholder="Ex: 16"
autocomplete="off"
/>
</div>
<br />
<div>
<label for="line-height">Line Height</label>
<input
type="number"
step="0.1"
name="line-height"
id="line-height-input"
placeholder="Ex: 1.2"
autocomplete="off"
/>
</div>
<br />
<button id="apply-button" type="submit">APPLY</button>
<button id="reset-button">RESET</button>
</form>
<script src="better-github.js" type="text/javascript"></script>
</body>
</html>