-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
44 lines (42 loc) · 869 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>SaveTabs Popup</title>
<style>
body {
overflow: hidden;
margin: 0px;
padding: 0px;
background: white;
}
div:first-child {
margin-top: 0px;
}
div {
cursor: pointer;
text-align: center;
padding: 1px 3px;
font-family: sans-serif;
font-size: 1.2em;
line-height: 2em;
width: 100px;
margin-top: 0.5em;
background: #fff;
}
div:hover {
background: #eee;
}
a,
a:visited,
a:hover,
a:active {
color: inherit;
text-decoration: inherit;
}
</style>
</head>
<body>
<div><a href="save.html" target="_blank">Save Tabs</a></div>
<div><a href="load.html" target="_blank">Load Tabs</a></div>
</body>
</html>