-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
56 lines (56 loc) · 1.23 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Unsplash JPG Fixer</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
font-family: Arial, sans-serif;
background-color: #f1f1f3;
margin: 0;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 250px;
padding: 20px;
background: white;
border-radius: 15px;
-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.18);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.18);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.18);
}
#icon {
width: 80px;
height: 80px;
margin-bottom: 10px;
background: #eee;
}
h1 {
font-size: 18px;
margin: 10px 0;
color: #333;
}
p {
font-size: 14px;
line-height: 1.4;
margin: 0;
color: #666;
text-align: center;
}
</style>
</head>
<body>
<div class="card">
<img id="icon" src="icons/icon.png" alt="Extension Icon">
<h1>Unsplash JPG Fixer</h1>
<p>This extension automatically adjusts Unsplash images to JPG format.</p>
</div>
</body>
</html>