-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
77 lines (77 loc) · 1.81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Bullshit Translator</title>
<script type="module" src="popup.js"></script>
<style>
body {
font-family: "Arial", sans-serif;
margin: 0;
padding: 0;
min-width: 400px;
max-width: 400px;
width: 100%;
background-color: #fff;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
padding: 20px;
background-color: #fff;
text-align: center;
}
.logo {
width: 72px;
height: auto;
margin-bottom: 20px;
}
h1 {
color: #0c056d; /* Steel blue color for title */
font-size: 24px;
margin-bottom: 20px;
}
ol {
margin-top: 20px;
padding-left: 20px;
text-align: left;
}
ol li {
margin-bottom: 10px;
font-size: 16px;
}
strong {
color: #0c056d; /* Steel blue color for emphasized text */
}
#processPage {
background-color: #0c056d; /* Steel blue background for button */
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 20px;
transition: background-color 0.3s;
}
#processPage:hover {
background-color: #080444; /* Darker blue on hover */
}
ol ol {
margin-top: 5px;
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="container">
<img src="icons/icon.svg" alt="Logo" class="logo" />
<h1 id="popupTitle"></h1>
<p id="popupChooseMethod"></p>
<ol id="popupInstructions"></ol>
<button id="processPage"></button>
</div>
</body>
</html>