-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
44 lines (44 loc) · 945 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>WordSense Toggle</title>
<style>
body {
width: 100px;
padding: 10px;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f9f9f9;
}
h2 {
color: rgb(21, 205, 144);
}
.toggle-icon {
width: 60px;
height: 60px;
cursor: pointer;
transition: opacity 0.3s ease;
margin-top: 10px;
}
.toggle-text {
margin-top: 10px;
font-size: 14px;
text-align: center;
}
</style>
</head>
<body>
<h2>WordSense</h2>
<img
id="toggleIcon"
class="toggle-icon"
src="power_off.png"
alt="Toggle Icon"
/>
<div id="toggleText" class="toggle-text">Disabled</div>
<script src="popup.js"></script>
</body>
</html>