-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
59 lines (57 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Info</title>
</head>
<style type="text/css">
body{
margin:0;
background: white;
font-family:Arial;
}
.info-fury-mainPop{
float: left;
width: 200px;
margin: 2% 0%;
}
.info-fury-opt-header{
float: left;
width: 95%;
padding: %;
color: #E54040;
font-weight: bold;
text-align: center;
padding-top: 9px;
font-size: 17px;
}
.info-fury-option{
width: 83%;
padding: 5%;
cursor: pointer;
color: white;
font-size: 13px;
background-color: white;
border-left:4px solid #E54040;
margin: 2% auto;
background-color: #393C3E;
}
.info-fury-option:hover{
background-color: #E54040;
color:white;
border-left:4px solid #393C3E;
font-weight: bold;
}
</style>
<body>
<div class="info-fury-mainPop">
<div class="info-fury-opt-header">Info Changer</div>
</div>
<div class="info-fury-mainPop" id="info-fury-mainPop">
<div class="info-fury-option" id="text-change" >Modify Text</div>
<div class="info-fury-option" id="text-hide" >Blur Text</div>
<div class="info-fury-option" id="text-highlight" >Highlight Text</div>
<div class="info-fury-option" id="take-screenshot" >Capture Screen</div>
</div>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>