forked from DaveDuck321/Colorful-window-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
20 lines (20 loc) · 696 Bytes
/
popup.html
File metadata and controls
20 lines (20 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Pick a Theme</title>
<style>
body { font-family: Arial, sans-serif; width: 160px; overflow: auto}
#theme-buttons { overflow-y: auto}
button { display: block; width: 100%; padding: 5px; margin: 2px 0; border: none; cursor: pointer; }
.row { display: flex; align-items: center; margin-bottom: 2px; }
.row button { flex-grow: 1; }
.edit-button { width: 28px; height: 28px; margin-left: 5px; }
.reset-button { width: 28px; height: 28px; margin-left: 5px; }
</style>
</head>
<body>
<h3>Select Theme</h3>
<div id="theme-buttons"></div>
<script src="popup.js"></script>
</body>
</html>