-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
68 lines (62 loc) · 1.32 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
<!-- popup.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookit</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: #ffffff;
box-sizing: border-box;
}
.popup-container {
width: 100%;
max-width: 300px;
padding: 20px;
text-align: center;
}
h1 {
font-size: 18px;
color: #333;
margin-bottom: 15px;
}
button {
font-size: 14px;
padding: 10px 20px;
margin: 10px 0;
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
outline: none;
}
button:hover {
background-color: #45a049;
}
</style>
<script src="popup.js" defer></script>
</head>
<body>
<div class="popup-container">
<h1>Bookit Actions</h1>
<button id="save-all-tabs-btn">Save All Tabs</button>
<button id="combine-all-btn">Combine All</button>
</div>
</body>
</html>