-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
39 lines (29 loc) · 2 KB
/
options.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
<html>
<head>
<title>MATH Keys Extension Options</title>
<meta content=”text/html; charset=utf-8″ http-equiv=”Content-Type”>
<link rel="stylesheet" href="math_extention_main.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Arima+Madurai&family=Unica+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&family=Unica+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Finlandica&family=Fira+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link href="https://fonts.googleapis.com/css2?family=Expletus+Sans&family=Gugi&family=Sail&family=ZCOOL+QingKe+HuangYou&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<label > Color - used to change font color:</label><br>
<input type="color" id="font_color">
<br>
<br>
<label > Font size - used for font size in the copied formula:</label><br>
<label > Size 1.5 is standard, 10 is big - try it out</label><br>
<input type="number" min="1" max="50" id="font_size">
<div id="status"></div>
<button class="button" id="save">Save</button>
<script src="options.js"></script>
</body>
</html>