-
Notifications
You must be signed in to change notification settings - Fork 28
/
popup.html
42 lines (40 loc) · 976 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
<html>
<head>
<title>Notion Build</title>
<style>
html {
width: 300px;
min-height: 100px;
padding: 10px;
text-align: center;
}
#go-to-options {
margin: 20px;
background-color: #41bfe5;
border-radius: 5px;
color: #ffffff;
font-weight: bold;
border: none;
padding: 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<header>
<img src="/icons/128.png" width="50px" alt="Notion Web Themes" />
</header>
<main id="app">
<button id="go-to-options">Choose a theme</button>
</main>
<br />
<footer>
NotionThemes • Made By
<a href="https://twitter.com/_yudax" target="_blank">Yudax</a> •
<a href="https://ko-fi.com/yudax" target="_blank">Donate</a>
</footer>
</div>
<script src="js/popup.js"></script>
</body>
</html>