-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·61 lines (53 loc) · 1.59 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
61
<!doctype html>
<html>
<head>
<title>Protect</title>
<style>
body {
margin-top: 20px;
background-color: #54AEFD;
width: 200px;
height: 200px;
align-self: center;
}
button {
border-radius: 8px;
padding: 5%;
margin-top: 20px;
width: 50%;
font-family: "Geneva";
font-size: 9pt;
color: "grey";
align-self: center;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
h1 {
margin: 10px;
color: #FFFFFF;
align-self: center;
}
button#changeText {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
button#unchangeText {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
</style>
</head>
<body>
<center>
<h1><font face="AppleGothic" size="6" color="white">PrivaSeeable</font></h1>
</center>
<center>
<button id="changeText">Randomizer</button>
<button id="revertText">Unrandomize</button>
<button id="blur">Blur</button>
<button id="unblur">Unblur</button>
</center>
<center>
<p> <font face= "Geneva" size="2" color="white">Hold Ctrl + click to unblur</p>
</center>
</body>
<script type="text/javascript" src=popup.js></script>
<script type="text/javascript" src=UI.js></script>
</html>