-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (32 loc) · 746 Bytes
/
popup.html
File metadata and controls
35 lines (32 loc) · 746 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 400px;
padding: 32px;
font-family: Roboto, sans-serif;
position: relative;
}
#theme-name {
font-weight: bold;
margin-top: 10px;
font-size: 18px;
line-height: 1.4;
}
a {
position: absolute;
bottom: 6px;
right: 6px;
opacity: .3;
font-size: 14px;
line-height: 1;
}
</style>
</head>
<body>
<div id="theme-name">Loading...</div>
<script src="popup.js"></script>
<a href="https://github.com/renangf4" target="_blank">Development by renangf4</a>
</body>
</html>