-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
44 lines (40 loc) · 942 Bytes
/
popup.html
File metadata and controls
44 lines (40 loc) · 942 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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: 'Segoe UI', sans-serif;
padding: 16px;
width: 220px;
background-color: #f9f9f9;
color: #333;
text-align: center;
}
button {
background: linear-gradient(135deg, #00a5ee, #007fb8);
color: #fff;
border: none;
padding: 12px 16px;
width: 100%;
cursor: pointer;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
transition: background 0.3s ease, transform 0.1s ease;
}
button:hover {
background: linear-gradient(135deg, #00a5ee, #007fb8);
}
button:active {
transform: scale(0.98);
}
</style>
</head>
<body>
<button id="export">Export from MUBI</button>
<p style="font-size:12px">Did you like this app? Leave a feedback.
Collaborate. <a href="https://ko-fi.com/od3zza">Buy me a popcorn.</a></p>
<script src="popup.js"></script>
</body>
</html>