mirror of
https://github.com/nileshtrivedi/better
synced 2024-12-28 06:00:37 +01:00
39 lines
799 B
HTML
39 lines
799 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 40px auto;
|
|
max-width:650px;
|
|
line-height:1.6;
|
|
font-size:18px;
|
|
color:#444;
|
|
padding:0 10px
|
|
}
|
|
h1,h2,h3 {
|
|
line-height:1.2
|
|
}
|
|
|
|
input[type=url] {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
padding: 5px 5px;
|
|
font-size: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h3>Choose a different source of suggestions!</h3>
|
|
<!-- TODO: Fetch the current option value and set in URL field below -->
|
|
<input id="betterSourceText" type="url" placeholder="https://cdn.jsdelivr.net/gh/nileshtrivedi/better/defaultlist.json" />
|
|
<button id="betterSourceSubmit" value="Save">Save</button>
|
|
</div>
|
|
</body>
|
|
<script src="options.js"></script>
|
|
</html> |