-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 2.27 KB
/
index.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
61
62
63
64
65
66
67
68
<html>
<head>
</head>
<style>
button {
background-color: #d8d8d8;
border-color: #d8d8d8;
transform: scale(1.4);
margin-left: 22px;
}
body {
width: 30.8ch;
height: 40.1ch;
font-size: 1.6ch;
}
textarea {
width:-webkit-fill-available;
min-width:-webkit-fill-available;
}
input[type="color" i]{
border-radius: 4px;
}
span{
margin-left: 2px;
border: outset;
border-color: transparent;
}
</style>
<style id="isC">
input[type="color" i]::-webkit-color-swatch{
border-color: #9043cc;
}
</style>
<style id="isC2">
input[type="color" i]{
background-color: #9043cc;
border-color: buttonface;
}
</style>
<body>
<br>
<button title="RECORDING TAB (Click to stop)" id="recStop" style="filter: hue-rotate(147deg); background-color:#7097ff; border-color:#7097ff; transform: scale(1.4); margin-left: 10px;">⏺</button>
<button id="delPg" title="Delete page from history" style="display: none; margin-left: 12px;">🚮</button>
<button id="delSte" title="Delete site from history" style="font-weight:bolder;margin-left: 12px;">🗑</button>
<button title="RECORDING WINDOW (Click to stop)" id="recStop_w" style="filter: invert(0) hue-rotate(147deg); background-color: #001fff; border-color: #0065b8; transform: scale(1.4) translateX(-3px); margin-left: 16px; color: #ffffff; font-weight: 1000; font-size: 95%;">⛞</button>
<br><br>
<input type="checkbox" id="visCol" style="transform: scale(1.4); margin-bottom: 9px;" checked="true"> Colour visited links differently</input>
<br>
<a id="eg" style="color:#9043cc; text-decoration: underline outline: #9043cc outset 1px !important; box-shadow: #9043cc 0em 0em 8px 2px !important; color: rgb(144, 67, 204) !important;">http://www.example.com/</a>
<br><br>
<input type="color" id="vis" value="#9043cc" /><span contenteditable id="visL" for="vis">#9043cc</span>
<br><br>
<span>Blacklisted sites (Separate with commas; use asterisks with slashes):</span>
<textarea id="bklst"></textarea>
<br><br>
<button id="save" title="Save settings">Save settings</button>
</body>
<script src="index.js"></script>
</html>